mirror of
https://github.com/home-assistant/core.git
synced 2026-08-03 20:24:55 +02:00
39e32ce0b2
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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();
|
|
});
|