refactor: deno_fetch op crate (#7524)

This commit is contained in:
Bartek Iwańczuk 2020-09-18 15:20:55 +02:00 committed by GitHub
parent cead79f5b8
commit 7845740637
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 2544 additions and 2234 deletions

View file

@ -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"]);