-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6823 from opengovsg/release_v6.83.0
build: release v6.83.0
- Loading branch information
Showing
42 changed files
with
1,301 additions
and
461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,10 @@ test.describe('login', () => { | |
.getByRole('textbox', { name: /log in/i }) | ||
.fill('[email protected]') | ||
|
||
await page.getByRole('button', { name: /log in/i }).click() | ||
await page | ||
.getByRole('button', { name: /log in/i }) | ||
.first() | ||
.click() | ||
|
||
// Ensure error message is seen | ||
await expect( | ||
|
@@ -36,7 +39,10 @@ test.describe('login', () => { | |
await expect(page).toHaveURL(LOGIN_PAGE) | ||
|
||
await page.getByRole('textbox', { name: /log in/i }).fill(legitUserEmail) | ||
await page.getByRole('button', { name: /log in/i }).click() | ||
await page | ||
.getByRole('button', { name: /log in/i }) | ||
.first() | ||
.click() | ||
|
||
// Ensure OTP success message is seen | ||
await expect( | ||
|
@@ -61,7 +67,10 @@ test.describe('login', () => { | |
await expect(page).toHaveURL(LOGIN_PAGE) | ||
|
||
await page.getByRole('textbox', { name: /log in/i }).fill(legitUserEmail) | ||
await page.getByRole('button', { name: /log in/i }).click() | ||
await page | ||
.getByRole('button', { name: /log in/i }) | ||
.first() | ||
.click() | ||
|
||
// Ensure OTP success message is seen | ||
await expect( | ||
|
Oops, something went wrong.