test: Add E2E test framework with Playwright

feat: Basic Homepage elements
This commit is contained in:
2026-04-20 07:11:56 -04:00
parent 5c830443f3
commit d07a02c9dc
13 changed files with 625 additions and 32 deletions

View File

@@ -11,7 +11,10 @@
"typecheck": "nuxt typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts"
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"engines": {
"node": ">=22"
@@ -33,6 +36,7 @@
},
"devDependencies": {
"@nuxt/test-utils": "^4.0.2",
"@playwright/test": "^1.59.1",
"@vite-pwa/nuxt": "^1.1.1",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^20.8.9",