mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 15:08:12 -05:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
import fetch from "node-fetch";
|
|
import { WebSocket } from "ws";
|
|
import chai from "chai";
|
|
import chaiString from "chai-string";
|
|
|
|
chai.use(chaiString);
|
|
|
|
globalThis.fetch = fetch;
|
|
globalThis.WebSocket = WebSocket;
|
|
globalThis.chai = chai;
|