1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
This commit is contained in:
Kenta Moriuchi 2024-08-21 04:31:20 +09:00
parent 73f866c643
commit 5867a8c030
No known key found for this signature in database
GPG key ID: AC843C584A91BE0C

View file

@ -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.",