Merge branch 'main' into alexd/worrying-bandicoot

This commit is contained in:
Benjamin Pasero
2022-06-22 06:48:39 +02:00
committed by GitHub
268 changed files with 2453 additions and 2138 deletions

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