From 1f8e11079eab46092ab67f2008931b0855d33e7a Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 27 Apr 2021 09:07:28 +0200 Subject: [PATCH] Revert "Comment out failing integration tests (#122269)" This reverts commit 9a4d524f909e09079fec7abb82f2efde2172da7c. --- .../src/singlefolder-tests/notebook.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 3f44586625d..f1017256e10 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/notebook.test.ts @@ -759,7 +759,7 @@ suite('Notebook API tests', function () { await saveAllFilesAndCloseAll(undefined); }); - test.skip('set outputs on cancel', async () => { + test('set outputs on cancel', async () => { const cancelableKernel = new class extends Kernel { @@ -804,7 +804,7 @@ suite('Notebook API tests', function () { await saveAllFilesAndCloseAll(undefined); }); - test.skip('set outputs on interrupt', async () => { + test('set outputs on interrupt', async () => { const interruptableKernel = new class extends Kernel { @@ -1187,7 +1187,7 @@ suite('Notebook API tests', function () { assert.strictEqual(notebook.isDirty, false); }); - test.skip('Output changes are applied once the promise resolves', async function () { + test('Output changes are applied once the promise resolves', async function () { const verifyOutputSyncKernel = new class extends Kernel { constructor() { @@ -1216,7 +1216,7 @@ suite('Notebook API tests', function () { verifyOutputSyncKernel.controller.dispose(); }); - test.skip('latestExecutionSummary', async () => { + test('latestExecutionSummary', async () => { const resource = await createRandomNotebookFile(); await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest'); const editor = vscode.window.activeNotebookEditor!;