Merge pull request #808 from EricCornelson/master

Small test bug fixes
This commit is contained in:
Rob Lourens 2019-04-15 20:52:24 +00:00 коммит произвёл GitHub
Родитель 2f65e12b09 4b4febeffa
Коммит e108005655
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -29,8 +29,10 @@ export interface BreakpointLocation {
* @param launchConfig The launch config to use
*/
export async function launchTestAdapter(client: DebugClient, launchConfig: any) {
let init = client.waitForEvent('initialized');
await client.launch(launchConfig);
await client.waitForEvent('initialized');
await init;
await client.configurationDoneRequest();
}