-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a18d9b
commit 4839315
Showing
9 changed files
with
29 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,16 +66,16 @@ test("Layout @smoke", async ({ page }) => { | |
await test.step("can toggle discreet mode", async () => { | ||
await layout.goToPortfolio(); // FIXME: remove this line when LL-8899 is fixed | ||
await layout.toggleDiscreetMode(); | ||
await expect | ||
.soft(page) | ||
.toHaveScreenshot("discreet-mode.png", { mask: [page.locator("canvas")] }); | ||
await expect.soft(page).toHaveScreenshot("discreet-mode.png", { | ||
Check failure on line 69 in apps/ledger-live-desktop/tests/specs/general/layout.spec.ts GitHub Actions / Desktop Tests E2E (Ubuntu)[mocked_tests] › specs/general/layout.spec.ts:11:5 › Layout @smoke
|
||
mask: [page.locator("canvas"), layout.marketPerformanceWidget], | ||
}); | ||
}); | ||
|
||
await test.step("can collapse the main sidebar", async () => { | ||
await layout.drawerCollapseButton.click(); | ||
await expect | ||
.soft(page) | ||
.toHaveScreenshot("collapse-sidebar.png", { mask: [page.locator("canvas")] }); | ||
await expect.soft(page).toHaveScreenshot("collapse-sidebar.png", { | ||
Check failure on line 76 in apps/ledger-live-desktop/tests/specs/general/layout.spec.ts GitHub Actions / Desktop Tests E2E (Ubuntu)[mocked_tests] › specs/general/layout.spec.ts:11:5 › Layout @smoke
|
||
mask: [page.locator("canvas"), layout.marketPerformanceWidget], | ||
}); | ||
}); | ||
|
||
await test.step("can display the help modal", async () => { | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,9 @@ test("Portfolio @smoke", async ({ page }) => { | |
|
||
await test.step("load portfolio", async () => { | ||
await layout.totalBalance.waitFor({ state: "visible" }); | ||
await expect.soft(page).toHaveScreenshot("portfolio.png"); | ||
await expect.soft(page).toHaveScreenshot("portfolio.png", { | ||
Check failure on line 14 in apps/ledger-live-desktop/tests/specs/general/portfolio.spec.ts GitHub Actions / Desktop Tests E2E (Ubuntu)[mocked_tests] › specs/general/portfolio.spec.ts:8:5 › Portfolio @smoke
|
||
mask: [layout.marketPerformanceWidget], | ||
}); | ||
}); | ||
|
||
await test.step(`scroll to operations`, async () => { | ||
|
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