summaryrefslogtreecommitdiff
path: root/std/async/delay_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/async/delay_test.ts')
-rw-r--r--std/async/delay_test.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/std/async/delay_test.ts b/std/async/delay_test.ts
deleted file mode 100644
index e5f08f110..000000000
--- a/std/async/delay_test.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-import { delay } from "./delay.ts";
-import { assert } from "../testing/asserts.ts";
-
-Deno.test("[async] delay", async function (): Promise<void> {
- const start = new Date();
- const delayedPromise = delay(100);
- const result = await delayedPromise;
- const diff = new Date().getTime() - start.getTime();
- assert(result === undefined);
- assert(diff >= 100);
-});