Skip to content

Commit

Permalink
Merge pull request #47 from Leokuma/main
Browse files Browse the repository at this point in the history
Fix tests on Deno >= 1.37.0
  • Loading branch information
Hexagon authored Nov 22, 2023
2 parents fda0701 + f8c7d48 commit 323747f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/core/loadbalancer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ class MockConn implements Deno.Conn {
upgrade(): Promise<Deno.FsFile> {
return Promise.resolve(new Deno.FsFile(this.rid))
}
[Symbol.dispose](): void {
this.close()
}
}

Deno.test("LoadBalancer - Initialization", () => {
Expand Down

0 comments on commit 323747f

Please sign in to comment.