Skip to content

Commit

Permalink
fix tests (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Jul 8, 2024
1 parent 845e277 commit 886ba1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/engine.io-parser/test/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
createPacketDecoderStream,
Packet,
} from "..";
import * as expect from "expect.js";
import expect = require("expect.js");
import { areArraysEqual, createArrayBuffer } from "./util";

const withNativeArrayBuffer = typeof ArrayBuffer === "function";
Expand Down
2 changes: 1 addition & 1 deletion packages/engine.io-parser/test/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
createPacketDecoderStream,
createPacketEncoderStream,
} from "..";
import * as expect from "expect.js";
import expect = require("expect.js");
import { areArraysEqual } from "./util";

describe("engine.io-parser (node.js only)", () => {
Expand Down

0 comments on commit 886ba1c

Please sign in to comment.