diff options
Diffstat (limited to 'cli/tests/unit/body_test.ts')
-rw-r--r-- | cli/tests/unit/body_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/body_test.ts b/cli/tests/unit/body_test.ts index c8f783e04..fd91b5ced 100644 --- a/cli/tests/unit/body_test.ts +++ b/cli/tests/unit/body_test.ts @@ -42,7 +42,7 @@ unitTest( const body = buildBody(text); - // @ts-ignore + // @ts-expect-error body.contentType = "multipart/form-data;boundary=boundary"; const formData = await body.formData(); @@ -62,7 +62,7 @@ unitTest( const body = buildBody(text); - // @ts-ignore + // @ts-expect-error body.contentType = "application/x-www-form-urlencoded"; const formData = await body.formData(); |