New changes

This commit is contained in:
Shivam Meena
2023-06-06 22:04:58 +05:30
parent 9d5203aea2
commit 8a8326e834
25 changed files with 7284 additions and 671 deletions

View File

@@ -0,0 +1,6 @@
import { expect, test } from '@playwright/test';
test('index page has expected h1', async ({ page }) => {
await page.goto('/');
expect(await page.textContent('h1')).toBe('Welcome to SvelteKit');
});