Skip to content

Re-enable notebook smoke tests #139127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/automation/src/playwrightDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ async function launchBrowser(options: LaunchOptions, endpoint: string) {
}
});

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

return { browser, context, page };
Expand Down
6 changes: 3 additions & 3 deletions test/smoke/src/areas/notebook/notebook.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function setup(logger: Logger) {
cp.execSync('git reset --hard HEAD --quiet', { cwd: app.workspacePathOrFolder });
});

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 Down Expand Up @@ -54,7 +54,7 @@ export function setup(logger: Logger) {
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 @@ -63,7 +63,7 @@ export function setup(logger: Logger) {
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