File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 45
45
- run : npm install -g pnpm
46
46
- run : pnpm install
47
47
- run : pnpm build
48
- - run : pnpm test
48
+ - run : pnpm test --runInBand
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " http-proxy-3" ,
3
- "version" : " 1.19.10 " ,
3
+ "version" : " 1.19.11 " ,
4
4
"repository" : {
5
5
"type" : " git" ,
6
6
"url" : " https://github.com/sagemathinc/http-proxy-3.git"
50
50
"clean" : " rm -rf dist node_modules" ,
51
51
"build" : " pnpm exec tsc --build .tsconfig-bootstrap.json && pnpm exec tsc --build" ,
52
52
"tsc" : " pnpm exec tsc --watch --pretty --preserveWatchOutput" ,
53
- "prepublishOnly" : " pnpm audit && pnpm test && rm dist/*.tsbuildinfo && rm -rf dist/test"
53
+ "prepublishOnly" : " pnpm audit && pnpm test --runInBand && rm -f dist/*.tsbuildinfo && rm -rf dist/test"
54
54
},
55
55
"engines" : {
56
56
"node" : " >=20.0.0"
Original file line number Diff line number Diff line change 1
1
A note about ports. These tests use a large number of ports and are run in
2
2
parallel. There will sometimes be failures sometimes due to a port conflict
3
3
between different tests being run at the same time.
4
+
5
+ Use ` pnpm test --runInBand ` to avoid this by running the tests in serial. This
6
+ is good for CI and release testing. Just use ` pnpm test ` for dev, since it's
7
+ much faster.
You can’t perform that action at this time.
0 commit comments