netlify test

This commit is contained in:
Shivam Meena
2023-06-07 22:00:57 +05:30
parent b65f12d3a2
commit 82ff2df427
21 changed files with 6475 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('/');
expect(await page.textContent('h1')).toBe('Welcome to SvelteKit');
});