diff options
Diffstat (limited to 'cli/tests/unit/body_test.ts')
-rw-r--r-- | cli/tests/unit/body_test.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/unit/body_test.ts b/cli/tests/unit/body_test.ts index ac65a1312..b7393ad0d 100644 --- a/cli/tests/unit/body_test.ts +++ b/cli/tests/unit/body_test.ts @@ -37,7 +37,7 @@ unitTest( { perms: { net: true } }, async function bodyMultipartFormData(): Promise<void> { const response = await fetch( - "http://localhost:4545/multipart_form_data.txt" + "http://localhost:4545/multipart_form_data.txt", ); const text = await response.text(); @@ -47,14 +47,14 @@ unitTest( assert(formData.has("field_1")); assertEquals(formData.get("field_1")!.toString(), "value_1 \r\n"); assert(formData.has("field_2")); - } + }, ); unitTest( { perms: { net: true } }, async function bodyURLEncodedFormData(): Promise<void> { const response = await fetch( - "http://localhost:4545/cli/tests/subdir/form_urlencoded.txt" + "http://localhost:4545/cli/tests/subdir/form_urlencoded.txt", ); const text = await response.text(); @@ -65,7 +65,7 @@ unitTest( assertEquals(formData.get("field_1")!.toString(), "Hi"); assert(formData.has("field_2")); assertEquals(formData.get("field_2")!.toString(), "<Deno>"); - } + }, ); unitTest({ perms: {} }, async function bodyURLSearchParams(): Promise<void> { |