Node build test

This commit is contained in:
Shivam Meena
2023-06-06 20:01:58 +05:30
parent e886cae9b7
commit a67890bd4d
23 changed files with 892 additions and 656 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');
});