We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae30b79 commit 09d963eCopy full SHA for 09d963e
1 file changed
apps/client-e2e/src/tests/runner.class.ts
@@ -1,5 +1,5 @@
1
import { Logger } from '@idl/logger';
2
-import { Sleep } from '@idl/shared';
+import { IDL_COMMANDS, Sleep } from '@idl/shared';
3
import { GetWorkspaceConfig } from '@idl/vscode/config';
4
import { arch, platform } from 'os';
5
import { performance } from 'perf_hooks';
@@ -37,10 +37,13 @@ export class Runner {
37
}
38
39
/**
40
- *
+ * Close files and stop all notebook kernels
41
*/
42
async closeAll() {
43
await vscode.commands.executeCommand('workbench.action.closeAllEditors');
44
+ await vscode.commands.executeCommand(
45
+ IDL_COMMANDS.NOTEBOOKS.STOP_ALL_KERNELS
46
+ );
47
48
49
0 commit comments