From c581592f24f98ff088a5430097bcc91ae4433d5d Mon Sep 17 00:00:00 2001 From: Peng Lyu Date: Wed, 1 Feb 2023 21:02:14 -0800 Subject: [PATCH] Re #170072, disable nb flaky test. (#173091) --- .../src/singlefolder-tests/notebook.editor.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/notebook.editor.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/notebook.editor.test.ts index ad89096d704..f061a098d04 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/notebook.editor.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/notebook.editor.test.ts @@ -66,7 +66,8 @@ import * as utils from '../utils'; }); // #138683 - test('Opening a notebook should fire activeNotebook event changed only once', utils.withVerboseLogs(async function () { + // TODO https://github.com/microsoft/vscode/issues/170072 + test.skip('Opening a notebook should fire activeNotebook event changed only once', utils.withVerboseLogs(async function () { const openedEditor = onDidOpenNotebookEditor(); const resource = await utils.createRandomFile(undefined, undefined, '.nbdtest'); const document = await vscode.workspace.openNotebookDocument(resource);