diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 11:44:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 11:44:08 -0500 |
commit | 6cc998f28bb1cf119ca96bac385c7361bc1f7021 (patch) | |
tree | d5fb8f0da5c79fa14afc814ea85cf1c9134eb714 /js/fetch_test.ts | |
parent | bee55fcd20b4919f2d6b4817ce33d1a09e6bcadc (diff) |
Remove support for extensionless import (#1396)
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... }); |