fix: 💚 Run every test file separately instead of using the global bun test command

This commit is contained in:
Jesse Wierzbinski 2024-09-23 13:20:30 +02:00
parent de8b8e2cc0
commit c7ec678a3e
No known key found for this signature in database
6 changed files with 9 additions and 10 deletions

View file

@ -38,7 +38,8 @@
"cli": "bun run cli/index.ts",
"prune": "ts-prune | grep -v server/ | grep -v dist/ | grep -v '(used in module)'",
"schema:generate": "bun run packages/config-manager/json-schema.ts > config/config.schema.json && bun run packages/plugin-kit/json-schema.ts > packages/plugin-kit/manifest.schema.json",
"check": "bunx tsc -p ."
"check": "bunx tsc -p .",
"test": "find . -name \"*.test.ts\" -not -path \"./node_modules/*\" | xargs -I {} sh -c 'bun test {} || exit 255'"
},
"trustedDependencies": [
"@biomejs/biome",