Skip to content

Commit 1c03498

Browse files
committed
Enable notebook smoke tests
Fixes microsoft#126371
1 parent 383c9cf commit 1c03498

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Application } from '../../../../automation';
99
import { afterSuite, beforeSuite } from '../../utils';
1010

1111
export function setup(opts: minimist.ParsedArgs) {
12-
describe.skip('Notebooks', () => {
12+
describe('Notebooks', () => {
1313
beforeSuite(opts);
1414

1515
afterEach(async function () {
@@ -26,7 +26,7 @@ export function setup(opts: minimist.ParsedArgs) {
2626

2727
afterSuite(opts);
2828

29-
it.skip('inserts/edits code cell', async function () {
29+
it('inserts/edits code cell', async function () {
3030
const app = this.app as Application;
3131
await app.workbench.notebook.openNotebook();
3232
await app.workbench.notebook.focusNextCell();
@@ -35,7 +35,7 @@ export function setup(opts: minimist.ParsedArgs) {
3535
await app.workbench.notebook.stopEditingCell();
3636
});
3737

38-
it.skip('inserts/edits markdown cell', async function () {
38+
it('inserts/edits markdown cell', async function () {
3939
const app = this.app as Application;
4040
await app.workbench.notebook.openNotebook();
4141
await app.workbench.notebook.focusNextCell();
@@ -45,7 +45,7 @@ export function setup(opts: minimist.ParsedArgs) {
4545
await app.workbench.notebook.waitForMarkdownContents('h2', 'hello2!');
4646
});
4747

48-
it.skip('moves focus as it inserts/deletes a cell', async function () {
48+
it('moves focus as it inserts/deletes a cell', async function () {
4949
const app = this.app as Application;
5050
await app.workbench.notebook.openNotebook();
5151
await app.workbench.notebook.insertNotebookCell('code');
@@ -55,7 +55,7 @@ export function setup(opts: minimist.ParsedArgs) {
5555
await app.workbench.notebook.waitForMarkdownContents('p', 'Markdown Cell');
5656
});
5757

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

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

0 commit comments

Comments
 (0)