Saving current progress

This commit is contained in:
Luke Hagar
2023-11-17 10:57:16 -06:00
commit 6b0ae6ff69
135 changed files with 65337 additions and 0 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;