mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-09 16:47:37 +03:00
14 lines
376 B
TypeScript
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();
|
||
|
|
});
|
||
|
|
});
|