summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorAnonymous <65428781+00ff0000red@users.noreply.github.com>2021-01-07 07:50:57 -0800
committerGitHub <noreply@github.com>2021-01-07 10:50:57 -0500
commitb40d5e5e0b44187737651d155d2e67fcc26f14e8 (patch)
treeda9e3adfb0c59ee8f800ca429465981fd939c273 /cli/tests/integration_tests.rs
parent9b3338fa2f61060ed92abe850fbd31170006217e (diff)
ignore "use asm" (#9019)
Preventing V8 from logging erroneous line numbers. Use wasm.
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index cd222f0b4..68cfe0b50 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -3522,6 +3522,23 @@ itest!(inline_js_source_map_with_contents_from_graph {
});
#[test]
+fn no_validate_asm() {
+ let output = util::deno_cmd()
+ .current_dir(util::root_path())
+ .arg("run")
+ .arg("cli/tests/no_validate_asm.js")
+ .stderr(std::process::Stdio::piped())
+ .stdout(std::process::Stdio::piped())
+ .spawn()
+ .unwrap()
+ .wait_with_output()
+ .unwrap();
+ assert!(output.status.success());
+ assert!(output.stderr.is_empty());
+ assert!(output.stdout.is_empty());
+}
+
+#[test]
fn cafile_env_fetch() {
use deno_core::url::Url;
let _g = util::http_server();