test: revert - skip restore

This commit is contained in:
Pranav C
2024-02-07 12:26:51 +00:00
parent 5abc3372f1
commit 71eb5977e2
3 changed files with 5 additions and 3 deletions

View File

@@ -13,7 +13,8 @@ export class OpenIDLoginPage extends BasePage {
async goto(title = 'test') {
// reload page to get latest app info
await this.rootPage.reload();
await this.rootPage.goto('/?skipRestore=true#/signin/');
await this.rootPage.waitForTimeout(1000);
await this.rootPage.goto('/#/signin/');
// click sign in with SAML
await this.rootPage.locator(`button:has-text("Sign in with ${title}")`).click();
}

View File

@@ -14,7 +14,8 @@ export class SAMLLoginPage extends BasePage {
async goto(title = 'test') {
// reload page to get latest app info
await this.rootPage.reload();
await this.rootPage.goto('/?skipRestore=true#/signin/');
await this.rootPage.waitForTimeout(1000);
await this.rootPage.goto('/#/signin/');
// click sign in with SAML
await this.rootPage.locator(`button:has-text("Sign in with ${title}")`).click();
}

View File

@@ -412,7 +412,7 @@ const setup = async ({
}
await page.addInitScript(
async ({ token }) => {
if (location.search?.match(/code=|short-token=|skipRestore/)) return;
if (location.search?.match(/code=|short-token=/)) return;
try {
let initialLocalStorage = {};
try {