We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d8c5e commit a36d0b8Copy full SHA for a36d0b8
src/publish.ts
@@ -67,7 +67,7 @@ export const publishFirefoxExtension = async (
67
logger.log('Waiting for redirection to signin page')
68
await page.waitForNavigation()
69
}
70
- if (await page.evaluate(/* istanbul ignore next */ () => location.pathname === '/oauth/signin')) {
+ if (await page.evaluate(/* istanbul ignore next */ () => /^\/oauth(\/signin)?\/?/.test(location.pathname))) {
71
logger.log('Redirected to signin page')
72
await page.waitForSelector('input[type="email"]')
73
logger.log('Entering email')
0 commit comments