summaryrefslogtreecommitdiff
path: root/cli/tests/unit/fetch_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/fetch_test.ts')
-rw-r--r--cli/tests/unit/fetch_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts
index ed17c869a..97b001b55 100644
--- a/cli/tests/unit/fetch_test.ts
+++ b/cli/tests/unit/fetch_test.ts
@@ -93,7 +93,7 @@ unitTest({ perms: { net: true } }, async function fetchBodyUsed(): Promise<
assertEquals(response.bodyUsed, false);
assertThrows((): void => {
// Assigning to read-only property throws in the strict mode.
- // @ts-ignore
+ // @ts-expect-error
response.bodyUsed = true;
});
await response.blob();
@@ -595,7 +595,7 @@ unitTest({ perms: { net: true } }, async function fetchBodyReadTwice(): Promise<
const methods = ["json", "text", "formData", "arrayBuffer"];
for (const method of methods) {
try {
- // @ts-ignore
+ // @ts-expect-error
await response[method]();
fail(
"Reading body multiple times should failed, the stream should've been locked."