diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-04-12 00:40:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 01:40:42 +0200 |
commit | 8b49d948f58e0665e87e63f7e154ab53fa60a939 (patch) | |
tree | c4ecac6dc2ce62c894636084a2aa53da957c511d /cli/tests/unit/test_util.ts | |
parent | 06b5959eed5bd634851cd52dc24dca51e48d32de (diff) |
fix(runtime/js/timers): Use (0, eval) instead of eval() (#10103)
Diffstat (limited to 'cli/tests/unit/test_util.ts')
-rw-r--r-- | cli/tests/unit/test_util.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/unit/test_util.ts b/cli/tests/unit/test_util.ts index 39866c3fc..0f967c0fb 100644 --- a/cli/tests/unit/test_util.ts +++ b/cli/tests/unit/test_util.ts @@ -21,6 +21,7 @@ export { unreachable, } from "../../../test_util/std/testing/asserts.ts"; export { deferred } from "../../../test_util/std/async/deferred.ts"; +export type { Deferred } from "../../../test_util/std/async/deferred.ts"; export { readLines } from "../../../test_util/std/io/bufio.ts"; export { parse as parseArgs } from "../../../test_util/std/flags/mod.ts"; |