mirror of
https://github.com/home-assistant/core.git
synced 2026-08-03 20:24:55 +02:00
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
|
|
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();
|
||
|
|
});
|