Skip to content
Merged
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
4 changes: 3 additions & 1 deletion test/sanity/src/devTunnel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export function setup(context: TestContext) {
const tunnelUrl = /Open this link in your browser (https?:\/\/[^\s]+)/.exec(line)?.[1];
if (tunnelUrl) {
await connectToTunnel(tunnelUrl, page, test, auth);
await test.run(page);
await test.run(page, true);
test.validate();
return true;
}
Expand All @@ -135,6 +135,8 @@ export function setup(context: TestContext) {
context.log('Waiting for the workbench to load');
await page.waitForSelector('.monaco-workbench');

await test.dismissWelcomeDialog(page);

context.log('Selecting GitHub Account');
await page.locator('span.monaco-highlighted-label', { hasText: 'GitHub' }).click();

Expand Down
Loading