Uncomment in test

This commit is contained in:
Daniel Imms 2021-03-08 15:52:59 -08:00
parent 30f4163184
commit 8fe29a7c41
2 changed files with 3 additions and 4 deletions

View file

@ -117,9 +117,9 @@ import { assertNoRpc } from '../utils';
});
// Wait for end of task process
// await new Promise<void>(r => {
// disposables.push(tasks.onDidEndTaskProcess(() => r));
// });
await new Promise<void>(r => {
disposables.push(tasks.onDidEndTaskProcess(() => r));
});
});
test('sync CustomExecution task should flush all data on close', async () => {

View file

@ -412,7 +412,6 @@ export abstract class BaseExtHostTerminalService extends Disposable implements I
}
public $acceptTerminalOpened(id: number, extHostTerminalId: string | undefined, name: string, shellLaunchConfigDto: IShellLaunchConfigDto): void {
console.log('$acceptTerminalOpened', id, extHostTerminalId, name, shellLaunchConfigDto);
if (extHostTerminalId) {
// Resolve with the renderer generated id
const index = this._getTerminalObjectIndexById(this._terminals, extHostTerminalId);