Skip to content

Commit

Permalink
Enable notebook smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Aug 12, 2021
1 parent 383c9cf commit 1c03498
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/smoke/src/areas/notebook/notebook.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Application } from '../../../../automation';
import { afterSuite, beforeSuite } from '../../utils';

export function setup(opts: minimist.ParsedArgs) {
describe.skip('Notebooks', () => {
describe('Notebooks', () => {
beforeSuite(opts);

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

afterSuite(opts);

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();
Expand All @@ -35,7 +35,7 @@ export function setup(opts: minimist.ParsedArgs) {
await app.workbench.notebook.stopEditingCell();
});

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

it.skip('moves focus as it inserts/deletes a cell', async function () {
it('moves focus as it inserts/deletes a cell', async function () {
const app = this.app as Application;
await app.workbench.notebook.openNotebook();
await app.workbench.notebook.insertNotebookCell('code');
Expand All @@ -55,7 +55,7 @@ export function setup(opts: minimist.ParsedArgs) {
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();
Expand All @@ -64,7 +64,7 @@ export function setup(opts: minimist.ParsedArgs) {
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');
Expand Down

0 comments on commit 1c03498

Please sign in to comment.