Add SvelteKit Example (#684)

* Add SvelteKit Example

* package-lock.json
This commit is contained in:
Wesley
2024-03-07 15:08:44 +01:00
committed by GitHub
parent 0e907262e3
commit ae1cdac7db
24 changed files with 3752 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
},
testDir: 'tests',
testMatch: /(.+\.)?(test|spec)\.[jt]s/
};
export default config;