From ee19746d14e64fd6176c8adf019e30bcb3e030e1 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Tue, 14 Dec 2021 15:15:09 -0800 Subject: [PATCH] Skip some flaky notebook integration tests - #126371 --- .../src/singlefolder-tests/notebook.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts index b4c4c7a3e2b..035e2c5b8ae 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts @@ -281,7 +281,8 @@ suite('Notebook API tests', function () { assert.strictEqual(editor.document.cellCount, 2); }); - test('#98841, initialzation should not emit cell change events.', async function () { + // #126371 + test.skip('#98841, initialzation should not emit cell change events.', async function () { let count = 0; testDisposables.push(vscode.notebooks.onDidChangeNotebookCells(() => { @@ -462,7 +463,8 @@ suite('Notebook API tests', function () { }); }); - test('cell execute command takes arguments ICellRange[]', async () => { + // #126371 + test.skip('cell execute command takes arguments ICellRange[]', async () => { const resource = await createRandomNotebookFile(); await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest');