Skip to content

Commit 667c0d7

Browse files
committed
fix(parser): Make test script Windows-compatible
- Change test script from 'node --test test/*.test.js' to 'node --test test/parser.test.js' - Windows doesn't expand glob patterns in the same way as Unix - Explicitly specify the test file to avoid cross-platform issues
1 parent d4cc832 commit 667c0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"build:lts": "npm run clean && cross-env PARSER_BUILD_TYPE=lts npm run prepare",
5050
"build:latest": "npm run clean && cross-env PARSER_BUILD_TYPE=latest npm run prepare",
5151
"build:legacy": "npm run clean && cross-env PARSER_BUILD_TYPE=legacy npm run prepare",
52-
"test": "node --test test/*.test.js"
52+
"test": "node --test test/parser.test.js"
5353
},
5454
"keywords": [
5555
"postgresql",

0 commit comments

Comments
 (0)