mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
parent
840c4aa2b2
commit
723284fd20
7 changed files with 175 additions and 282 deletions
|
@ -69,8 +69,8 @@ testPerm({ net: true }, async function fetchEmptyInvalid(): Promise<void> {
|
|||
} catch (err_) {
|
||||
err = err_;
|
||||
}
|
||||
assertEquals(err.kind, Deno.ErrorKind.InvalidUri);
|
||||
assertEquals(err.name, "InvalidUri");
|
||||
assertEquals(err.kind, Deno.ErrorKind.RelativeUrlWithoutBase);
|
||||
assertEquals(err.name, "RelativeUrlWithoutBase");
|
||||
});
|
||||
|
||||
testPerm({ net: true }, async function fetchMultipartFormDataSuccess(): Promise<
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue