aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/justfile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-16 23:10:11 +0900
committernsfisis <nsfisis@gmail.com>2026-02-16 23:14:10 +0900
commit1699d2bf679e336cc89ccab5bb8ef7e1101e721d (patch)
treedb31556771736e4aa178d9c4aba19c135b62d8d0 /frontend/justfile
parentefe05c1444963c046ab91bf54fa51a794bda58c0 (diff)
downloadphperkaigi-2026-albatross-1699d2bf679e336cc89ccab5bb8ef7e1101e721d.tar.gz
phperkaigi-2026-albatross-1699d2bf679e336cc89ccab5bb8ef7e1101e721d.tar.zst
phperkaigi-2026-albatross-1699d2bf679e336cc89ccab5bb8ef7e1101e721d.zip
test(frontend): add Vitest test infrastructure and sample tests
Set up Vitest with @testing-library/react and jsdom for frontend unit testing. Add sample tests for config.ts and BorderedContainer. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'frontend/justfile')
-rw-r--r--frontend/justfile9
1 files changed, 6 insertions, 3 deletions
diff --git a/frontend/justfile b/frontend/justfile
index beba8b3..6d8082e 100644
--- a/frontend/justfile
+++ b/frontend/justfile
@@ -1,7 +1,10 @@
check:
npm run check
-ci:
+test:
+ npm run test
+
+ci: test
npx biome ci .
- npx tsc --noEmit
- npx eslint .
+ npm run check:ts
+ npm run check:eslint