summaryrefslogtreecommitdiff
path: root/cli/js/timers_test.ts
diff options
context:
space:
mode:
authorYusuke Sakurai <kerokerokerop@gmail.com>2020-03-03 23:51:07 +0900
committerGitHub <noreply@github.com>2020-03-03 15:51:07 +0100
commit4dc004f0a24fdc81026ec03326b9943a95f1a31d (patch)
tree97a066cee4c56e4242c69cce99e93101a43b4714 /cli/js/timers_test.ts
parent3968308886dec239a071503bf09352f893e1da83 (diff)
misc: reduce unnecesarry output in cli/js tests (#4182)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/js/timers_test.ts')
-rw-r--r--cli/js/timers_test.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/js/timers_test.ts b/cli/js/timers_test.ts
index 84811ff11..06367fc6d 100644
--- a/cli/js/timers_test.ts
+++ b/cli/js/timers_test.ts
@@ -297,7 +297,6 @@ test(async function timerMaxCpuBug(): Promise<void> {
const { opsDispatched } = Deno.metrics();
await waitForMs(100);
const opsDispatched_ = Deno.metrics().opsDispatched;
- console.log("opsDispatched", opsDispatched, "opsDispatched_", opsDispatched_);
assert(opsDispatched_ - opsDispatched < 10);
});