Skip to content

Commit c58865e

Browse files
committed
chore: mv
1 parent aaadfcb commit c58865e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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",

src/Pool.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ afterEach(async () => {
2626
})
2727

2828
describe.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
},

src/Server.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ beforeAll(async () => {
1717
})
1818

1919
describe.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
},

0 commit comments

Comments
 (0)