mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
Uncomment in test
This commit is contained in:
parent
30f4163184
commit
8fe29a7c41
2 changed files with 3 additions and 4 deletions
|
@ -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 () => {
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue