chore: implement js test suites
Build Test / test (pull_request) Successful in 51s
JS Unit Tests / test (pull_request) Successful in 39s
PHP Integration Tests / Integration Tests (pull_request) Successful in 2m0s
PHP Unit Tests / test (pull_request) Successful in 2m18s

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-07-24 00:13:45 -04:00
parent 9b701bf2a0
commit 861abac4b4
6 changed files with 1256 additions and 334 deletions
+10 -3
View File
@@ -7,7 +7,11 @@
"build": "vite build --mode production --config vite.config.ts",
"dev": "vite build --mode development --config vite.config.ts",
"watch": "vite build --mode development --watch --config vite.config.ts",
"typecheck": "vue-tsc --noEmit"
"typecheck": "vue-tsc --noEmit",
"test": "vitest run --config tests/js/vitest.config.ts",
"test:unit": "vitest run --config tests/js/vitest.config.ts",
"test:watch": "vitest watch --config tests/js/vitest.config.ts",
"test:coverage": "vitest run --coverage --config tests/js/vitest.config.ts"
},
"dependencies": {
"pinia": "^4.0.0",
@@ -17,7 +21,10 @@
"@tsconfig/node24": "^24.0.0",
"@types/node": "^24.0.0",
"@vue/tsconfig": "^0.9.0",
"typescript": "~7.0.0",
"vite": "^8.0.0"
"typescript": "~6.0.0",
"vite": "^8.0.0",
"@vitest/coverage-v8": "^4.1.6",
"jsdom": "^29.1.1",
"vitest": "^4.1.6"
}
}