-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update success URLs for E2E tests
- Loading branch information
Showing
4 changed files
with
183 additions
and
186 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ test.describe(`${process.env.E2E_TEST_ENV} - Authentication flow verification @s | |
await authPage.signUp(randomEmail, page); | ||
|
||
// assert successful login | ||
const successUrl = "/user/welcome"; | ||
expect(page.url()).toBe(`${process.env.E2E_TEST_BASE_URL}${successUrl}`); | ||
const successUrl = `${process.env.E2E_TEST_BASE_URL}/user/welcome`; | ||
expect(page.url()).toBe(successUrl); | ||
Check failure on line 31 in src/e2e/specs/auth.spec.ts GitHub Actions / e2e-tests[chromium] › auth.spec.ts:12:3 › local - Authentication flow verification @smoke › Verify sign up with new user
|
||
|
||
await testInfo.attach( | ||
`${process.env.E2E_TEST_ENV}-signup-monitor-dashboard.png`, | ||
|
Oops, something went wrong.