From dfcaa1fda3fb0f2fe33480001a90a3b5de2eeb5d Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Fri, 14 Jan 2022 13:43:37 -0800 Subject: [PATCH] Unskip test, fix #140200 already skipped in browser --- .../vscode-api-tests/src/singlefolder-tests/notebook.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ebc6b221e45..f4dce9cacd4 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts @@ -190,7 +190,7 @@ const apiTestContentProvider: vscode.NotebookContentProvider = { assert.strictEqual(selectionRedo[0].end, 2); }); - test.skip('editor editing event', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/140200 + test('editor editing event', async function () { const notebook = await openRandomNotebookDocument(); const editor = await vscode.window.showNotebookDocument(notebook);