Revert "Comment out failing integration tests (#122269)"

This reverts commit 9a4d524f90.
This commit is contained in:
Johannes Rieken 2021-04-27 09:07:28 +02:00
parent 26cf2a5d62
commit 1f8e11079e
No known key found for this signature in database
GPG key ID: 96634B5AF12F8798

View file

@ -759,7 +759,7 @@ suite('Notebook API tests', function () {
await saveAllFilesAndCloseAll(undefined);
});
test.skip('set outputs on cancel', async () => {
test('set outputs on cancel', async () => {
const cancelableKernel = new class extends Kernel {
@ -804,7 +804,7 @@ suite('Notebook API tests', function () {
await saveAllFilesAndCloseAll(undefined);
});
test.skip('set outputs on interrupt', async () => {
test('set outputs on interrupt', async () => {
const interruptableKernel = new class extends Kernel {
@ -1187,7 +1187,7 @@ suite('Notebook API tests', function () {
assert.strictEqual(notebook.isDirty, false);
});
test.skip('Output changes are applied once the promise resolves', async function () {
test('Output changes are applied once the promise resolves', async function () {
const verifyOutputSyncKernel = new class extends Kernel {
constructor() {
@ -1216,7 +1216,7 @@ suite('Notebook API tests', function () {
verifyOutputSyncKernel.controller.dispose();
});
test.skip('latestExecutionSummary', async () => {
test('latestExecutionSummary', async () => {
const resource = await createRandomNotebookFile();
await vscode.commands.executeCommand('vscode.openWith', resource, 'notebookCoreTest');
const editor = vscode.window.activeNotebookEditor!;