diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-04-03 19:20:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 19:20:36 +0200 |
commit | 3f489ae1aeff6f27b2214dc8201ed068abd5f973 (patch) | |
tree | 87f0003df9dcca167beabfff83781445649db84c /cli/js/tests/signal_test.ts | |
parent | efb022a50c8fd4ab598c0bdc6ff0c1978779260a (diff) |
fix: async ops sanitizer false positives in timers (#4602)
Diffstat (limited to 'cli/js/tests/signal_test.ts')
-rw-r--r-- | cli/js/tests/signal_test.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/js/tests/signal_test.ts b/cli/js/tests/signal_test.ts index a51df09d7..c2b4f878b 100644 --- a/cli/js/tests/signal_test.ts +++ b/cli/js/tests/signal_test.ts @@ -130,9 +130,6 @@ unitTest( assertEquals(c, 3); clearInterval(t); - // Defer for a moment to allow async op from `setInterval` to resolve; - // for more explanation see `FIXME` in `cli/js/timers.ts::setGlobalTimeout` - await defer(20); await resolvable; } ); @@ -153,9 +150,6 @@ unitTest( sig.dispose(); clearInterval(t); - // Defer for a moment to allow async op from `setInterval` to resolve; - // for more explanation see `FIXME` in `cli/js/timers.ts::setGlobalTimeout` - await defer(20); await resolvable; } ); |