diff --git a/extensions/vscode-notebook-tests/src/notebook.test.ts b/extensions/vscode-notebook-tests/src/notebook.test.ts index f1aa3fda8a2..e3ea9eefece 100644 --- a/extensions/vscode-notebook-tests/src/notebook.test.ts +++ b/extensions/vscode-notebook-tests/src/notebook.test.ts @@ -456,7 +456,7 @@ suite('Notebook API tests', () => { }); test('edit API (replaceMetadata)', async function () { - this.skip(); + assertInitalState(); const resource = await createRandomFile('', undefined, 'first', '.vsctestnb'); await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest'); @@ -475,7 +475,7 @@ suite('Notebook API tests', () => { }); test('edit API (replaceMetadata, event)', async function () { - this.skip(); + assertInitalState(); const resource = await createRandomFile('', undefined, 'first', '.vsctestnb'); await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest'); @@ -624,7 +624,6 @@ suite('Notebook API tests', () => { }); test('edit API batch edits', async function () { - this.skip(); assertInitalState(); const resource = await createRandomFile('', undefined, 'first', '.vsctestnb'); await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest'); @@ -644,7 +643,6 @@ suite('Notebook API tests', () => { }); test('edit API batch edits undo/redo', async function () { - this.skip(); assertInitalState(); const resource = await createRandomFile('', undefined, 'first', '.vsctestnb'); await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest');