refactor: split test suites — test:ci for unit tests, test for all

- Move hermes ACP integration tests to __tests__/integration/
- Add test:ci script to all packages (excludes integration/)
- CI workflow uses test:ci instead of test
- bun test still runs everything (unit + integration)

Refs #510
This commit is contained in:
2026-05-25 10:27:46 +00:00
parent cef4617956
commit 4d85a2eebb
11 changed files with 89 additions and 82 deletions
+1
View File
@@ -11,6 +11,7 @@
"typecheck": "bunx tsc --build",
"format": "biome format --write .",
"test": "bun run --filter './packages/*' test",
"test:ci": "bun run --filter './packages/*' test:ci",
"changeset": "bunx changeset",
"version": "bunx changeset version",
"release": "bun run build && bun test && node scripts/publish-all.mjs"