diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-07-15 01:47:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 19:47:47 +0200 |
commit | 844910e44fc9433e5ac4ba03ade72292a32326e8 (patch) | |
tree | b8fcba4598b5bb789e3d896db7cd16574d4da197 /cli/tests/test/clear_timeout.ts | |
parent | 5b771e7e83b32402f06873e684efb2381971e0f6 (diff) |
test(cli): ensure clear timeout doesn't trigger sanitizers (#11396)
Diffstat (limited to 'cli/tests/test/clear_timeout.ts')
-rw-r--r-- | cli/tests/test/clear_timeout.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/test/clear_timeout.ts b/cli/tests/test/clear_timeout.ts new file mode 100644 index 000000000..00056e853 --- /dev/null +++ b/cli/tests/test/clear_timeout.ts @@ -0,0 +1,5 @@ +clearTimeout(setTimeout(() => {}, 1000)); + +Deno.test("test 1", () => {}); +Deno.test("test 2", () => {}); +Deno.test("test 3", () => {}); |