Skip to content

Commit

Permalink
chore: Increase timeout for server starting in core tests, avoiding w…
Browse files Browse the repository at this point in the history
…indows flakey builds
  • Loading branch information
TimothyJones committed Sep 23, 2024
1 parent ec7d836 commit d52732c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/case-core/src/index.http.client.spec.verify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('Server verification', () => {

beforeAll(async () => {
server = await start(port, serverDependencies);
});
}, 30000);
afterAll(
() =>
new Promise<void>((resolve, reject) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/case-core/src/index.http.server.define.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('e2e http provider driven', () => {

beforeAll(async () => {
server = await start(port, serverDependencies);
});
}, 30000);

afterAll(
() =>
Expand Down

0 comments on commit d52732c

Please sign in to comment.