mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-09 16:47:37 +03:00
19 lines
609 B
TypeScript
19 lines
609 B
TypeScript
|
|
/**
|
||
|
|
* Classification page tests -- MEDIUM tier.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { test, expect } from "../fixtures/frigate-test";
|
||
|
|
|
||
|
|
test.describe("Classification @medium", () => {
|
||
|
|
test("classification page renders without crash", async ({ frigateApp }) => {
|
||
|
|
await frigateApp.goto("/classification");
|
||
|
|
await expect(frigateApp.page.locator("#pageRoot")).toBeVisible();
|
||
|
|
});
|
||
|
|
|
||
|
|
test("classification page shows content", async ({ frigateApp }) => {
|
||
|
|
await frigateApp.goto("/classification");
|
||
|
|
await frigateApp.page.waitForTimeout(2000);
|
||
|
|
await expect(frigateApp.page.locator("#pageRoot")).toBeVisible();
|
||
|
|
});
|
||
|
|
});
|