Skip to content

Commit

Permalink
skip test on node16
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe committed Oct 29, 2024
1 parent 21ed331 commit 7c94eba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { headStream } from "../headStream.browser";
import { ChecksumStream as ChecksumStreamWeb } from "./ChecksumStream.browser";
import { createChecksumStream } from "./createChecksumStream.browser";

(typeof ReadableStream === "function" ? describe : describe.skip)("Checksum streams", () => {
(typeof ReadableStream === "function" && process.version >= "v18" ? describe : describe.skip)("Checksum streams", () => {
/**
* Hash "algorithm" that appends all data together.
*/
Expand Down

0 comments on commit 7c94eba

Please sign in to comment.