diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-09-26 01:45:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-25 13:45:57 -0400 |
commit | eb7f70c0b04d07feb30d41418935a3521811f8f8 (patch) | |
tree | 23b9b7ec9d7ac99e1564a040fca961b7f78bf3eb /std/async/delay_test.ts | |
parent | b6c189e88e5ec7e88276d3c3b2be6e5030c5ed92 (diff) |
test(std/async): remove redundant export in test (#7682)
Diffstat (limited to 'std/async/delay_test.ts')
-rw-r--r-- | std/async/delay_test.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/std/async/delay_test.ts b/std/async/delay_test.ts index 2e4a56a84..087c3ffa1 100644 --- a/std/async/delay_test.ts +++ b/std/async/delay_test.ts @@ -10,5 +10,3 @@ Deno.test("[async] delay", async function (): Promise<void> { assert(result === undefined); assert(diff >= 100); }); - -export {}; |