Skip to content

Commit 5f13557

Browse files
homeofeCopilot
andcommitted
fix(test): use jest.js directly for Windows compatibility
node_modules/.bin/jest is a bash script that fails on Windows. Use node_modules/jest/bin/jest.js directly. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 0a2c1ef commit 5f13557

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"scripts": {
1515
"build": "tsc",
1616
"lint": "eslint src/",
17-
"test": "node --experimental-vm-modules node_modules/.bin/jest",
17+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
1818
"prepublishOnly": "npm run lint && npm run build && npm test"
1919
},
2020
"keywords": [

0 commit comments

Comments
 (0)