Skip to content

Commit 2cf9c9d

Browse files
committed
re-enable tests to look for failure
1 parent f16892a commit 2cf9c9d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 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('check heap leaks', async function () {
28+
it('check heap leaks', async function () {
2929
const app = this.app as Application;
3030
await app.profiler.checkHeapLeaks(['NotebookTextModel', 'NotebookCellTextModel', 'NotebookEventDispatcher'], async () => {
3131
await app.workbench.notebook.openNotebook();
@@ -34,7 +34,7 @@ export function setup(logger: Logger) {
3434
});
3535
});
3636

37-
it.skip('check object leaks', async function () {
37+
it('check object leaks', async function () {
3838
const app = this.app as Application;
3939
await app.profiler.checkObjectLeaks(['NotebookTextModel', 'NotebookCellTextModel', 'NotebookEventDispatcher'], async () => {
4040
await app.workbench.notebook.openNotebook();
@@ -43,7 +43,7 @@ export function setup(logger: Logger) {
4343
});
4444
});
4545

46-
it.skip('inserts/edits code cell', async function () {
46+
it('inserts/edits code cell', async function () {
4747
const app = this.app as Application;
4848
await app.workbench.notebook.openNotebook();
4949
await app.workbench.notebook.focusNextCell();
@@ -52,7 +52,7 @@ export function setup(logger: Logger) {
5252
await app.workbench.notebook.stopEditingCell();
5353
});
5454

55-
it.skip('inserts/edits markdown cell', async function () {
55+
it('inserts/edits markdown cell', async function () {
5656
const app = this.app as Application;
5757
await app.workbench.notebook.openNotebook();
5858
await app.workbench.notebook.focusNextCell();
@@ -62,7 +62,7 @@ export function setup(logger: Logger) {
6262
await app.workbench.notebook.waitForMarkdownContents('h2', 'hello2!');
6363
});
6464

65-
it.skip('moves focus as it inserts/deletes a cell', async function () {
65+
it('moves focus as it inserts/deletes a cell', async function () {
6666
const app = this.app as Application;
6767
await app.workbench.notebook.openNotebook();
6868
await app.workbench.notebook.insertNotebookCell('code');
@@ -72,7 +72,7 @@ export function setup(logger: Logger) {
7272
await app.workbench.notebook.waitForMarkdownContents('p', 'Markdown Cell');
7373
});
7474

75-
it.skip('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
75+
it('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
7676
const app = this.app as Application;
7777
await app.workbench.notebook.openNotebook();
7878
await app.workbench.notebook.executeActiveCell();
@@ -81,7 +81,7 @@ export function setup(logger: Logger) {
8181
await app.workbench.notebook.waitForActiveCellEditorContents('code()');
8282
});
8383

84-
it.skip('cell action execution', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
84+
it('cell action execution', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
8585
const app = this.app as Application;
8686
await app.workbench.notebook.openNotebook();
8787
await app.workbench.notebook.insertNotebookCell('code');

0 commit comments

Comments
 (0)