Skip to content

Commit

Permalink
fixed construct export when using beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
Armaldio committed Aug 16, 2024
1 parent 7588190 commit 1cadef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/libs/plugin-construct/assets/script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const script = async (
await page.frameLocator('#loginDialog iframe').getByLabel('Username').fill(username)
await page.frameLocator('#loginDialog iframe').getByLabel('Password').fill(password)

const tokenPromise = page.waitForResponse('https://account.construct.net/login.json')
const tokenPromise = page.waitForResponse(/https:\/\/account.*\.construct\.net\/login.json/i)

await page.frameLocator('#loginDialog iframe').getByRole('button', { name: 'Log in' }).click()

Expand Down

0 comments on commit 1cadef4

Please sign in to comment.