summaryrefslogtreecommitdiff
path: root/std/http/server_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-03-19 10:58:12 +0100
committerGitHub <noreply@github.com>2020-03-19 10:58:12 +0100
commitb0b27c43100bf4a7303174b9765c853d2f76f207 (patch)
treef992aad22e4ca38221bad100d4dae52737ea98a3 /std/http/server_test.ts
parent54d1f299dc774c695056f04cfe1013287b53b86a (diff)
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
Diffstat (limited to 'std/http/server_test.ts')
-rw-r--r--std/http/server_test.ts6
1 files changed, 3 insertions, 3 deletions
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<void> {
test({
name: "destroyed connection",
// FIXME(bartlomieju): hangs on windows, cause can't do `Deno.kill`
- skip: true,
+ ignore: true,
fn: async (): Promise<void> => {
// 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<void> => {
// Runs a simple server as another process
const p = Deno.run({
@@ -459,7 +459,7 @@ test("close server while iterating", async (): Promise<void> => {
// 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<void> {
const connClosedPromise = deferred();