Skip to content

Commit

Permalink
Ported source selection API error test
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Oct 22, 2023
1 parent 48e6172 commit e79bbf2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 17 deletions.
30 changes: 30 additions & 0 deletions __tests__/frontend-playwright/source-selection-api-error.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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: "success",
value: { status: "error", type: "DriveAPIError" },
},
];
});

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("An error occurred in Google Drive"),
).toBeVisible();
});
17 changes: 0 additions & 17 deletions __tests__/frontend/source-selection-api-error.cy.ts

This file was deleted.

0 comments on commit e79bbf2

Please sign in to comment.