We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5d041 commit b4120a5Copy full SHA for b4120a5
apps/client-e2e/src/tests/notebooks/save-and-clear-output.ts
@@ -25,7 +25,10 @@ export const SaveAndClearNotebook: RunnerFunction = async (init) => {
25
*/
26
const nb = await OpenNotebookInVSCode(file);
27
28
- // save contents of notebook which should have outputs from `run-test-notebook.ts`
+ // clear any existing outputs
29
+ await vscode.commands.executeCommand(VSCODE_COMMANDS.NOTEBOOK_RUN_ALL);
30
+
31
+ // save contents of notebook
32
await nb.save();
33
34
// clear any existing outputs
0 commit comments