Skip to content

Commit 7c5f2c2

Browse files
committed
fix skip condition for whatwg-streams testing
1 parent db2a828 commit 7c5f2c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/whatwg-streams.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { decodeAsync, encode, decodeArrayStream } from "@msgpack/msgpack";
44
describe("whatwg streams", () => {
55
before(function() {
66
// Edge <= 18 has no ReadableStream constructor
7-
if (typeof ReadableStream === "function") {
7+
if (typeof ReadableStream !== "function") {
88
this.skip();
99
}
1010
});

0 commit comments

Comments
 (0)