add hypothetical folder for Topos V2

This commit is contained in:
2024-04-19 20:13:37 +02:00
parent cee061a100
commit 13cf95b71e
30 changed files with 8380 additions and 0 deletions

View File

@ -0,0 +1,6 @@
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();
});