From b3b9d4e2e78f57ebbe85b316d0d4c0a2bf115eda Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Fri, 10 Dec 2021 17:08:02 -0800 Subject: [PATCH] Re-enable additional notebook smoke tests For #126371 These pass for me locally --- test/smoke/src/areas/notebook/notebook.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/smoke/src/areas/notebook/notebook.test.ts b/test/smoke/src/areas/notebook/notebook.test.ts index bfb55d76df5..0e639be3e10 100644 --- a/test/smoke/src/areas/notebook/notebook.test.ts +++ b/test/smoke/src/areas/notebook/notebook.test.ts @@ -25,7 +25,7 @@ export function setup(logger: Logger) { cp.execSync('git reset --hard HEAD --quiet', { cwd: app.workspacePathOrFolder }); }); - it.skip('inserts/edits code cell', async function () { + it('inserts/edits code cell', async function () { const app = this.app as Application; await app.workbench.notebook.openNotebook(); await app.workbench.notebook.focusNextCell(); @@ -54,7 +54,7 @@ export function setup(logger: Logger) { await app.workbench.notebook.waitForMarkdownContents('p', 'Markdown Cell'); }); - it.skip('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882 + it('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882 const app = this.app as Application; await app.workbench.notebook.openNotebook(); await app.workbench.notebook.executeActiveCell(); @@ -63,7 +63,7 @@ export function setup(logger: Logger) { await app.workbench.notebook.waitForActiveCellEditorContents('code()'); }); - it.skip('cell action execution', async function () { + it('cell action execution', async function () { const app = this.app as Application; await app.workbench.notebook.openNotebook(); await app.workbench.notebook.insertNotebookCell('code');