This commit is contained in:
Jesse Winton
2024-08-27 09:43:37 -04:00
parent c9f7fc75f1
commit 562058cf0e
319 changed files with 16360 additions and 15622 deletions

View File

@@ -1,6 +1,8 @@
import { expect, test } from '@playwright/test';
import { expect, test } from "@playwright/test";
test('index page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.getByRole('heading', { name: 'Welcome to SvelteKit' })).toBeVisible();
test("index page has expected h1", async ({ page }) => {
await page.goto("/");
await expect(
page.getByRole("heading", { name: "Welcome to SvelteKit" }),
).toBeVisible();
});