diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-24 18:37:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-24 18:37:04 -0400 |
commit | a497f87b59a5271d89cf50063154c46c4e52c523 (patch) | |
tree | 589f025bfca66cb96b8ea6ca51440340f4909f53 /cli/tests/integration_tests.rs | |
parent | 726f08694b4d27a06dee7fbbef3a574a7c2c0053 (diff) |
Upgrade V8 for top-level-await (#3015)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index eb315d040..fd5efca18 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -427,6 +427,7 @@ itest!(error_013_missing_script { itest!(error_014_catch_dynamic_import_error { args: "error_014_catch_dynamic_import_error.js --reload --allow-read", output: "error_014_catch_dynamic_import_error.js.out", + exit_code: 1, }); itest!(error_015_dynamic_import_permissions { @@ -549,3 +550,8 @@ itest!(wasm_async { args: "wasm_async.js", output: "wasm_async.out", }); + +itest!(top_level_await { + args: "--allow-read top_level_await.js", + output: "top_level_await.out", +}); |