diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-30 12:38:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-30 12:38:23 -0400 |
commit | ae26a9c7a22bf3311648a93a3171f087490c6e4d (patch) | |
tree | 8a2a4c9264cc842579375d47b915b15456845eca /cli/tests/integration_tests.rs | |
parent | 5f7ab4884c4009943c1ede3343ab03750ea4a9e1 (diff) |
Support top-level-await in TypeScript (#3024)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 99ab54a02..0e0407180 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -567,3 +567,8 @@ itest!(top_level_await { args: "--allow-read top_level_await.js", output: "top_level_await.out", }); + +itest!(top_level_await_ts { + args: "--allow-read top_level_await.ts", + output: "top_level_await.out", +}); |