From 6cc998f28bb1cf119ca96bac385c7361bc1f7021 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 23 Dec 2018 11:44:08 -0500 Subject: Remove support for extensionless import (#1396) --- js/fetch_test.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'js/fetch_test.ts') 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... }); -- cgit v1.2.3