frigate/web/e2e/specs/replay.spec.ts
2026-04-06 11:15:22 -05:00

14 lines
376 B
TypeScript

/**
* Replay page tests -- LOW tier.
*/
import { test, expect } from "../fixtures/frigate-test";
test.describe("Replay Page @low", () => {
test("replay page renders without crash", async ({ frigateApp }) => {
await frigateApp.goto("/replay");
await frigateApp.page.waitForTimeout(2000);
await expect(frigateApp.page.locator("body")).toBeVisible();
});
});