-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ported source selection unhandled error test
- Loading branch information
1 parent
e79bbf2
commit 1e5c0f6
Showing
2 changed files
with
28 additions
and
17 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
__tests__/frontend-playwright/source-selection-unhandled-error.spec.ts
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { expect, test } from "@playwright/test"; | ||
|
||
import { setup } from "../test-utils-playwright/stub-endpoints"; | ||
|
||
test("handles raw errors in source folder selection gracefully", async ({ | ||
page, | ||
}) => { | ||
await page.goto("/"); | ||
await setup(page); | ||
|
||
await page.evaluate(() => { | ||
window._endpointStubs.listSharedDrives = [ | ||
{ | ||
status: "failure", | ||
value: new Error("ERROR MESSAGE"), | ||
}, | ||
]; | ||
}); | ||
|
||
await expect( | ||
page.getByText("Shared drive mover", { exact: true }), | ||
).toBeVisible(); | ||
await page.getByText("Continue").click(); | ||
await expect( | ||
page.getByText("An error occurred", { exact: true }), | ||
).toBeVisible(); | ||
await expect(page.getByText("ERROR MESSAGE")).toBeVisible(); | ||
}); |
This file was deleted.
Oops, something went wrong.