diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-19 10:58:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 10:58:12 +0100 |
commit | b0b27c43100bf4a7303174b9765c853d2f76f207 (patch) | |
tree | f992aad22e4ca38221bad100d4dae52737ea98a3 /cli/js/tests/fetch_test.ts | |
parent | 54d1f299dc774c695056f04cfe1013287b53b86a (diff) |
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
Diffstat (limited to 'cli/js/tests/fetch_test.ts')
-rw-r--r-- | cli/js/tests/fetch_test.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/js/tests/fetch_test.ts b/cli/js/tests/fetch_test.ts index 9a705c40a..67675177e 100644 --- a/cli/js/tests/fetch_test.ts +++ b/cli/js/tests/fetch_test.ts @@ -203,7 +203,7 @@ unitTest( { // FIXME(bartlomieju): // The feature below is not implemented, but the test should work after implementation - skip: true, + ignore: true, perms: { net: true } }, async function fetchWithInfRedirection(): Promise<void> { @@ -363,7 +363,7 @@ function bufferServer(addr: string): Deno.Buffer { unitTest( { // FIXME(bartlomieju) - skip: true, + ignore: true, perms: { net: true } }, async function fetchRequest(): Promise<void> { @@ -393,7 +393,7 @@ unitTest( unitTest( { // FIXME(bartlomieju) - skip: true, + ignore: true, perms: { net: true } }, async function fetchPostBodyString(): Promise<void> { @@ -427,7 +427,7 @@ unitTest( unitTest( { // FIXME(bartlomieju) - skip: true, + ignore: true, perms: { net: true } }, async function fetchPostBodyTypedArray(): Promise<void> { |