From 15a763152f9d392cb80692262f8de5ef8ae15495 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Wed, 11 Aug 2021 10:20:47 -0400 Subject: chore: move test files to testdata directory (#11601) --- cli/tests/test/finally_timeout.ts | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 cli/tests/test/finally_timeout.ts (limited to 'cli/tests/test/finally_timeout.ts') diff --git a/cli/tests/test/finally_timeout.ts b/cli/tests/test/finally_timeout.ts deleted file mode 100644 index dcc0a4d64..000000000 --- a/cli/tests/test/finally_timeout.ts +++ /dev/null @@ -1,11 +0,0 @@ -Deno.test("error", function () { - const timer = setTimeout(() => null, 10000); - try { - throw new Error("fail"); - } finally { - clearTimeout(timer); - } -}); - -Deno.test("success", function () { -}); -- cgit v1.2.3