añade el script bun run test para ejecutar cada test por separado de forma que si alguno falla breakea pero sin que se solapen unos con otros

main
borja 10 months ago
parent 2875c8eefb
commit 93db6a9adb

@ -5,7 +5,8 @@
"private": true,
"scripts": {
"typecheck:web": "cd apps/web && bunx svelte-kit sync && bunx tsc --noEmit --pretty false",
"typecheck:core": "bunx tsc -p tsconfig.core.json --noEmit --pretty false"
"typecheck:core": "bunx tsc -p tsconfig.core.json --noEmit --pretty false",
"test": "for i in $(fd . |rg test.ts); do bun test $i || break ; done"
},
"devDependencies": {
"@types/bun": "latest",

Loading…
Cancel
Save