diff options
author | Yusuke Sakurai <kerokerokerop@gmail.com> | 2020-03-25 02:39:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 13:39:41 -0400 |
commit | 07fc95aceee950316500cf2d770317b6e993356e (patch) | |
tree | e4d5fcc1999058d855a31b09b352c9947180fa85 /cli/js/tests/timers_test.ts | |
parent | 30bcf6a2ea620aa989a7362e7f4a62fc11743bb4 (diff) |
feat: add queueMicrotask to d.ts (#4477)
Diffstat (limited to 'cli/js/tests/timers_test.ts')
-rw-r--r-- | cli/js/tests/timers_test.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/js/tests/timers_test.ts b/cli/js/tests/timers_test.ts index b7da6a847..f758d5fca 100644 --- a/cli/js/tests/timers_test.ts +++ b/cli/js/tests/timers_test.ts @@ -362,3 +362,7 @@ unitTest(async function timerNestedMicrotaskOrdering(): Promise<void> { await promise; assertEquals(s, "0123456789AB"); }); + +unitTest(function testQueueMicrotask() { + assertEquals(typeof queueMicrotask, "function"); +}); |