diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-28 21:37:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-28 21:37:21 +0100 |
commit | 6ecc86cf2ae4bb0aac6f3d0e954382a69176b387 (patch) | |
tree | 8405d5a781abda4e59b508af2e6b5beaba86db88 /cli/tests/unit/form_data_test.ts | |
parent | 7bda0f567ec7e1a688b41b6026c6124656cd413a (diff) |
chore: add jsdoc to 26_fetch.js and enable some fetch tests (#9305)
Diffstat (limited to 'cli/tests/unit/form_data_test.ts')
-rw-r--r-- | cli/tests/unit/form_data_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/form_data_test.ts b/cli/tests/unit/form_data_test.ts index 76d137634..1a948631d 100644 --- a/cli/tests/unit/form_data_test.ts +++ b/cli/tests/unit/form_data_test.ts @@ -78,7 +78,7 @@ unitTest(function formDataParamsSetSuccess(): void { assertEquals(formData.get("e"), "null"); }); -unitTest(function fromDataUseDomFile(): void { +unitTest(function fromDataUseFile(): void { const formData = new FormData(); const file = new File(["foo"], "bar", { type: "text/plain", |