Skip to content

Commit 4701d71

Browse files
authored
FIx e2e test for activities filters (#6229)
1 parent 34b1b05 commit 4701d71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/app/tests/e2e/activities/global-activities-filters.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { expect, test } from "@playwright/test";
22
import { ACCOUNT_STATE_PATH } from "../../constants";
33

44
test.describe("Global Activities - List view and filter usage", () => {
5+
test.describe.configure({ mode: "serial" });
56
test.use({ storageState: ACCOUNT_STATE_PATH.ADMIN });
67
test.slow();
78

@@ -54,7 +55,7 @@ test.describe("Global Activities - List view and filter usage", () => {
5455
test("Filter by account", async ({ page }) => {
5556
await page.goto("/activities");
5657
await page.getByRole("button", { name: "Account" }).click();
57-
await page.getByRole("option", { name: "Chloe O'Brian" }).click();
58+
await page.getByRole("option", { name: "Jack Bauer" }).click();
5859
await page.getByRole("button", { name: "Apply" }).click();
5960
await expect(page.getByText("No activities found")).toBeVisible();
6061
});

0 commit comments

Comments
 (0)