14e14289f0
* fix: e2e flakes * Update apps/web/playwright/dynamic-booking-pages.e2e.ts Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * Update delete-account.e2e.ts --------- Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
19 lines
505 B
TypeScript
19 lines
505 B
TypeScript
import { test } from "./lib/fixtures";
|
|
|
|
test.describe.configure({ mode: "parallel" });
|
|
|
|
test.afterEach(({ users }) => users.deleteAll());
|
|
|
|
test.describe("AppListCard", async () => {
|
|
test("should remove the highlight from the URL", async ({ page, users }) => {
|
|
const user = await users.create({});
|
|
await user.apiLogin();
|
|
|
|
await page.goto("/apps/installed/conferencing?hl=daily-video");
|
|
|
|
await page.waitForLoadState();
|
|
|
|
await page.waitForURL("/apps/installed/conferencing");
|
|
});
|
|
});
|