Files
core/tests/e2e/onboarding.spec.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
285 B
TypeScript
Raw Normal View History

import { expect, test } from "@playwright/test";
test("fresh instance redirects to onboarding and renders the UI", async ({
page,
}) => {
await page.goto("/");
await expect(page).toHaveURL(/\/onboarding\.html/);
await expect(page.locator("ha-onboarding")).toBeVisible();
});