Skip to content

Commit f361c5b

Browse files
authored
Halve the number of executions to speed up test (microsoft#152768)
1 parent 27f575c commit f361c5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/vscode-api-tests/src/singlefolder-tests/interactiveWindow.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ async function addCellAndRun(code: string, notebook: vscode.NotebookDocument) {
7777
assert.ok(notebookEditor);
7878

7979
// Run and add a bunch of cells
80-
for (let i = 0; i < 20; i++) {
80+
for (let i = 0; i < 10; i++) {
8181
await addCellAndRun(`print ${i}`, notebookEditor.notebook);
8282
}
8383

0 commit comments

Comments
 (0)