From f361c5b71d6676cfc6de97cdb1cc40b08bf7d994 Mon Sep 17 00:00:00 2001 From: Rich Chiodo Date: Tue, 21 Jun 2022 21:24:21 -0700 Subject: [PATCH] Halve the number of executions to speed up test (#152768) --- .../src/singlefolder-tests/interactiveWindow.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/interactiveWindow.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/interactiveWindow.test.ts index 6880607ca7d..708ed02f709 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/interactiveWindow.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/interactiveWindow.test.ts @@ -77,7 +77,7 @@ async function addCellAndRun(code: string, notebook: vscode.NotebookDocument) { assert.ok(notebookEditor); // Run and add a bunch of cells - for (let i = 0; i < 20; i++) { + for (let i = 0; i < 10; i++) { await addCellAndRun(`print ${i}`, notebookEditor.notebook); }