Skip to content

Commit

Permalink
Made test suite more compatible with Node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
iwoplaza committed Dec 25, 2023
1 parent 149bdc8 commit a094c81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/socket-io-usage.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as chai from 'chai';
import { createServer } from 'node:http';
import { type AddressInfo } from 'node:net';
import { createServer } from 'http';
import { type AddressInfo } from 'net';
import { Server, Socket as ServerSocket } from 'socket.io';
import { Socket as ClientSocket, io as ioClient } from 'socket.io-client';

Expand Down

0 comments on commit a094c81

Please sign in to comment.