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 /std/examples/tests | |
parent | 54d1f299dc774c695056f04cfe1013287b53b86a (diff) |
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
Diffstat (limited to 'std/examples/tests')
-rw-r--r-- | std/examples/tests/curl_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/examples/tests/curl_test.ts b/std/examples/tests/curl_test.ts index 593e5b8f7..bc413b23f 100644 --- a/std/examples/tests/curl_test.ts +++ b/std/examples/tests/curl_test.ts @@ -6,7 +6,7 @@ Deno.test({ name: "[examples/curl] send a request to a specified url", // FIXME(bartlomieju): this test is leaking both resources and ops, // and causes interference with other tests - skip: true, + ignore: true, fn: async () => { const server = serve({ port: 8081 }); (async (): Promise<void> => { |