diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-09-24 16:46:57 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-24 10:46:57 -0400 |
commit | 2201414a7a3b300484431ff223e536335cc70ea8 (patch) | |
tree | 8f8f260f419b7156b0fb58503d8907abc99d9ff6 /cli/tests/integration_tests.rs | |
parent | 045e74bb39d7743b774cfd2b889bc6ce1e1ad245 (diff) |
fix: run missing integration tests (#2997)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index b9946e1f9..eb315d040 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -304,6 +304,19 @@ itest!(_042_dyn_import_evalcontext { output: "042_dyn_import_evalcontext.ts.out", }); +itest!(_043_xeval_delim2 { + args: "xeval -d MADAM console.log($)", + input: Some("!MADMADAMADAM!"), + output: "043_xeval_delim2.out", +}); + +itest!(_044_bad_resource { + args: "run --reload --allow-read 044_bad_resource.ts", + output: "044_bad_resource.ts.out", + check_stderr: true, + exit_code: 1, +}); + itest!(async_error { exit_code: 1, args: "run --reload async_error.ts", |