Skip to content

Commit 9d07207

Browse files
committed
Re-enable additional notebook smoke tests
For microsoft#126371 These pass for me locally
1 parent 6899b19 commit 9d07207

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

smoke/src/areas/notebook/notebook.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function setup(logger: Logger) {
2525
cp.execSync('git reset --hard HEAD --quiet', { cwd: app.workspacePathOrFolder });
2626
});
2727

28-
it.skip('inserts/edits code cell', async function () {
28+
it('inserts/edits code cell', async function () {
2929
const app = this.app as Application;
3030
await app.workbench.notebook.openNotebook();
3131
await app.workbench.notebook.focusNextCell();
@@ -54,7 +54,7 @@ export function setup(logger: Logger) {
5454
await app.workbench.notebook.waitForMarkdownContents('p', 'Markdown Cell');
5555
});
5656

57-
it.skip('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
57+
it('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
5858
const app = this.app as Application;
5959
await app.workbench.notebook.openNotebook();
6060
await app.workbench.notebook.executeActiveCell();
@@ -63,7 +63,7 @@ export function setup(logger: Logger) {
6363
await app.workbench.notebook.waitForActiveCellEditorContents('code()');
6464
});
6565

66-
it.skip('cell action execution', async function () {
66+
it('cell action execution', async function () {
6767
const app = this.app as Application;
6868
await app.workbench.notebook.openNotebook();
6969
await app.workbench.notebook.insertNotebookCell('code');

0 commit comments

Comments
 (0)