From 5867a8c0306019ea8bd7e594fa84b9f370db4221 Mon Sep 17 00:00:00 2001 From: Kenta Moriuchi Date: Wed, 21 Aug 2024 04:31:20 +0900 Subject: [PATCH] fix --- tests/unit/streams_test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/streams_test.ts b/tests/unit/streams_test.ts index 73f9a60953..fb18616939 100644 --- a/tests/unit/streams_test.ts +++ b/tests/unit/streams_test.ts @@ -541,6 +541,7 @@ Deno.test(async function decompressionStreamInvalidGzipStillReported() { Deno.test(function readableStreamFromWithStringThrows() { assertThrows( + // @ts-expect-error () => ReadableStream.from("string"), TypeError, "Failed to execute 'ReadableStream.from': Argument 1 can not be converted to async iterable.",