diff options
Diffstat (limited to 'cli/tests/unit/response_test.ts')
-rw-r--r-- | cli/tests/unit/response_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tests/unit/response_test.ts b/cli/tests/unit/response_test.ts index 5a5f8fdff..096eefc6d 100644 --- a/cli/tests/unit/response_test.ts +++ b/cli/tests/unit/response_test.ts @@ -37,7 +37,8 @@ unitTest(async function responseBlob() { assertEquals(blob, new Blob([new Uint8Array([1, 2, 3])])); }); -unitTest(async function responseFormData() { +// TODO(lucacasonato): re-enable test once #10002 is fixed. +unitTest({ ignore: true }, async function responseFormData() { const input = new FormData(); input.append("hello", "world"); const response = new Response(input, { |