Fix package.json test run script

This commit is contained in:
Lorenzo Iovino 2025-06-12 16:44:22 +02:00
parent 807518f87e
commit ffc2910a0b

View file

@ -8,8 +8,8 @@
"build": "tsc -p tsconfig.json", "build": "tsc -p tsconfig.json",
"build+start": "npm run build && npm run start", "build+start": "npm run build && npm run start",
"build:watch": "tsc -w -p tsconfig.json", "build:watch": "tsc -w -p tsconfig.json",
"test:watch": "node --import tsx --test --watch **/**/*.spec.ts", "test:watch": "node --import tsx --test --watch $(find src -name '*.spec.ts')",
"test": "node --import tsx --test **/**/*.spec.ts" "test": "node --import tsx --test $(find src -name '*.spec.ts')"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",