From b0b27c43100bf4a7303174b9765c853d2f76f207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 19 Mar 2020 10:58:12 +0100 Subject: refactor: rename Deno.TestDefinition.skip to ignore (#4400) --- std/http/server_test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'std/http/server_test.ts') diff --git a/std/http/server_test.ts b/std/http/server_test.ts index 79d4417db..b4d86c468 100644 --- a/std/http/server_test.ts +++ b/std/http/server_test.ts @@ -346,7 +346,7 @@ test(async function requestBodyReaderWithTransferEncoding(): Promise { test({ name: "destroyed connection", // FIXME(bartlomieju): hangs on windows, cause can't do `Deno.kill` - skip: true, + ignore: true, fn: async (): Promise => { // Runs a simple server as another process const p = Deno.run({ @@ -387,7 +387,7 @@ test({ test({ name: "serveTLS", // FIXME(bartlomieju): hangs on windows, cause can't do `Deno.kill` - skip: true, + ignore: true, fn: async (): Promise => { // Runs a simple server as another process const p = Deno.run({ @@ -459,7 +459,7 @@ test("close server while iterating", async (): Promise => { // We need to find a way to similarly trigger an error on Windows so that // we can test if connection is closed. test({ - skip: Deno.build.os == "win", + ignore: Deno.build.os == "win", name: "respond error handling", async fn(): Promise { const connClosedPromise = deferred(); -- cgit v1.2.3