mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
import { expect, test } from "@playwright/test";
|
|
|
|
test("should open start menu and see apps & power buttons", async ({
|
|
page,
|
|
}) => {
|
|
await page.goto("/");
|
|
|
|
await page.getByLabel("Start").click();
|
|
|
|
await expect(page.getByLabel("All apps")).toBeVisible();
|
|
await expect(page.getByLabel("Power")).toBeVisible();
|
|
});
|