diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-03 18:22:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 18:22:53 +0100 |
commit | ee452ad883c1c711839655a307b39e8eea5bf410 (patch) | |
tree | 2812a5201beb2b52c92d6e3c958f2288b0253b68 /cli/js/unit_tests.ts | |
parent | 4dc004f0a24fdc81026ec03326b9943a95f1a31d (diff) |
add assertOps sanitizer in cli/js/ unit tests (#4209)
* add "assertOps" test assertion which makes sure test case
is not "leaking" ops - ie. after test finishes there are no
pending async ops
* apply "assertOps" to all tests in "cli/js/"
* fix numerous tests leaking ops
* document problem with edge case in "clearInterval"
and "clearTimeout" implementation where they
may leak async ops
* move "cli/js/worker_test.ts" to "cli/tests/worker_test.ts" and
run as integration test; workers leak ops because of missing
"terminate" implementation
Diffstat (limited to 'cli/js/unit_tests.ts')
-rw-r--r-- | cli/js/unit_tests.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/js/unit_tests.ts b/cli/js/unit_tests.ts index f20e2f137..5093ce0b2 100644 --- a/cli/js/unit_tests.ts +++ b/cli/js/unit_tests.ts @@ -62,7 +62,6 @@ import "./utime_test.ts"; import "./write_file_test.ts"; import "./performance_test.ts"; import "./version_test.ts"; -import "./workers_test.ts"; if (import.meta.main) { await Deno.runTests(); |