diff options
author | Andy Hayden <andyhayden1@gmail.com> | 2019-10-27 06:04:42 -0700 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-10-27 09:04:42 -0400 |
commit | aec5a646c9218a0a0da62cbcd1f28bc23c242540 (patch) | |
tree | e052f0263eb2abc4915dc3710ec44ee34e9ad621 /cli/tests/integration_tests.rs | |
parent | 51dd91a3ccfd9554bcf69b539f2f748da81c5b12 (diff) |
feat: top-level-for-await (#3212)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index ee8f1384c..09f148736 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -597,3 +597,13 @@ itest!(top_level_await_ts { args: "--allow-read top_level_await.ts", output: "top_level_await.out", }); + +itest!(top_level_for_await { + args: "top_level_for_await.js", + output: "top_level_for_await.out", +}); + +itest!(top_level_for_await_ts { + args: "top_level_for_await.ts", + output: "top_level_for_await.out", +}); |