We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5dff0a commit 2dd5fa9Copy full SHA for 2dd5fa9
.github/workflows/ci.yml
@@ -18,6 +18,7 @@ jobs:
18
matrix:
19
node-version:
20
- 16
21
+ - 20
22
23
steps:
24
- name: Checkout repository
test/socket.ts
@@ -852,10 +852,6 @@ describe("socket", () => {
852
it("should not crash when messing with Object prototype (and other globals)", (done) => {
853
// @ts-ignore
854
Object.prototype.foo = "bar";
855
- // @ts-ignore
856
- global.File = "";
857
858
- global.Blob = [];
859
const io = new Server(0);
860
const socket = createClient(io);
861
0 commit comments