File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77 "check:types" : " tsc" ,
88 "dev" : " zile dev" ,
99 "postinstall" : " pnpm dev" ,
10- "test" : " vitest Server.test --testTimeout=10000"
10+ "test" : " vitest --testTimeout=10000"
1111 },
1212 "devDependencies" : {
1313 "@biomejs/biome" : " ^2.3.8" ,
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ afterEach(async () => {
2626} )
2727
2828describe . each ( [
29- { instance : Instance . anvil ( { port : port + 1 } ) } ,
30- { instance : Instance . tempo ( { port : port + 2 } ) } ,
29+ { instance : Instance . anvil ( { port : await getPort ( ) } ) } ,
30+ { instance : Instance . tempo ( { port : await getPort ( ) } ) } ,
3131 {
3232 instance : Instance . alto ( altoOptions ( { port, pool : true } ) ) ,
3333 } ,
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ beforeAll(async () => {
1717} )
1818
1919describe . each ( [
20- { instance : Instance . anvil ( { port : port + 1 } ) } ,
21- { instance : Instance . tempo ( { port : port + 2 } ) } ,
20+ { instance : Instance . anvil ( { port : await getPort ( ) } ) } ,
21+ { instance : Instance . tempo ( { port : await getPort ( ) } ) } ,
2222 {
2323 instance : Instance . alto ( altoOptions ( { port, pool : true } ) ) ,
2424 } ,
You can’t perform that action at this time.
0 commit comments