ci: add Node.js 20 in the test matrix

Reference: https://github.com/nodejs/Release
This commit is contained in:
Damien Arrachequesne
2023-06-22 07:45:27 +02:00
parent a5dff0ac83
commit 2dd5fa9dd4
2 changed files with 1 additions and 4 deletions

View File

@@ -852,10 +852,6 @@ describe("socket", () => {
it("should not crash when messing with Object prototype (and other globals)", (done) => {
// @ts-ignore
Object.prototype.foo = "bar";
// @ts-ignore
global.File = "";
// @ts-ignore
global.Blob = [];
const io = new Server(0);
const socket = createClient(io);