add ui testing
All checks were successful
Backend Actions / check (push) Successful in 13s
Backend Actions / build (push) Successful in 28s
Backend Actions / test (push) Successful in 37s

This commit is contained in:
2025-07-25 17:28:41 +01:00
parent 70835f04fa
commit 8c12ca0024
7 changed files with 608 additions and 5 deletions

View File

@ -7,14 +7,22 @@
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
"postinstall": "nuxt prepare",
"test": "vitest run"
"watch": "vitest watch"
},
"dependencies": {
"@nuxt/eslint": "1.6.0",
"@nuxt/icon": "^1.15.0",
"@nuxt/test-utils": "^3.19.2",
"nuxt": "^4.0.1",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@nuxt/test-utils": "^3.19.2",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^18.0.1",
"playwright-core": "^1.54.1",
"vitest": "^3.2.4"
}
}