Skip to content

Commit 8cf4dcd

Browse files
authored
Re-enable notebook smoke tests (#139127)
Fixes #126371
1 parent 921fad0 commit 8cf4dcd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/automation/src/playwrightDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ async function launchBrowser(options: LaunchOptions, endpoint: string) {
285285
}
286286
});
287287

288-
const payloadParam = `[["enableProposedApi",""],["skipWelcome","true"]]`;
288+
const payloadParam = `[["enableProposedApi",""],["webviewExternalEndpointCommit","69df0500a8963fc469161c038a14a39384d5a303"],["skipWelcome","true"]]`;
289289
await measureAndLog(page.goto(`${endpoint}&folder=vscode-remote://localhost:9888${URI.file(workspacePath!).path}&payload=${payloadParam}`), 'page.goto()', logger);
290290

291291
return { browser, context, page };

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

Lines changed: 3 additions & 3 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('inserts/edits code cell', async function () {
28+
it('inserts/edits code cell', async function () {
2929
const app = this.app as Application;
3030
await app.workbench.notebook.openNotebook();
3131
await app.workbench.notebook.focusNextCell();
@@ -54,7 +54,7 @@ export function setup(logger: Logger) {
5454
await app.workbench.notebook.waitForMarkdownContents('p', 'Markdown Cell');
5555
});
5656

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

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

0 commit comments

Comments
 (0)