Halve the number of executions to speed up test (#152768)

This commit is contained in:
Rich Chiodo
2022-06-21 21:24:21 -07:00
committed by GitHub
parent 27f575c72b
commit f361c5b71d

View File

@@ -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);
}