diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-18 15:20:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-18 09:20:55 -0400 |
commit | 7845740637eb646c0b13dc541f043fd65136fc03 (patch) | |
tree | 8576a376d72ffdfe4ffed983a2bed9e605d20e8b /cli/tests/unit/blob_test.ts | |
parent | cead79f5b8ffd376d339b6e0c30e872bfe6820f6 (diff) |
refactor: deno_fetch op crate (#7524)
Diffstat (limited to 'cli/tests/unit/blob_test.ts')
-rw-r--r-- | cli/tests/unit/blob_test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/unit/blob_test.ts b/cli/tests/unit/blob_test.ts index 7ef9b0125..b1587b6da 100644 --- a/cli/tests/unit/blob_test.ts +++ b/cli/tests/unit/blob_test.ts @@ -61,6 +61,7 @@ unitTest(function blobShouldNotThrowError(): void { assertEquals(hasThrown, false); }); +/* TODO https://github.com/denoland/deno/issues/7540 unitTest(function nativeEndLine(): void { const options = { ending: "native", @@ -69,6 +70,7 @@ unitTest(function nativeEndLine(): void { assertEquals(blob.size, Deno.build.os === "windows" ? 12 : 11); }); +*/ unitTest(async function blobText(): Promise<void> { const blob = new Blob(["Hello World"]); |