Skip to content

Commit

Permalink
test: speedup with background close
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Aug 22, 2023
1 parent d18584d commit 567fb35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ describe("ofetch", () => {
listener = await listen(toNodeListener(app));
});

afterAll(async () => {
await listener.close();
afterAll(() => {
listener.close().catch(console.error);
});

it("ok", async () => {
Expand Down

0 comments on commit 567fb35

Please sign in to comment.