diff options
Diffstat (limited to 'js/fetch_test.ts')
-rw-r--r-- | js/fetch_test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/fetch_test.ts b/js/fetch_test.ts index c631f2517..773b2eebd 100644 --- a/js/fetch_test.ts +++ b/js/fetch_test.ts @@ -66,8 +66,10 @@ testPerm({ net: true }, async function fetchMultipartFormDataSuccess() { assert(formData.has("field_1")); assertEqual(formData.get("field_1").toString(), "value_1 \r\n"); assert(formData.has("field_2")); + /* TODO(ry) Re-enable this test once we bring back the global File type. const file = formData.get("field_2") as File; assertEqual(file.name, "file.js"); + */ // Currently we cannot read from file... }); |