summaryrefslogtreecommitdiff
path: root/cli/tests/js_unit_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/js_unit_tests.rs')
-rw-r--r--cli/tests/js_unit_tests.rs45
1 files changed, 0 insertions, 45 deletions
diff --git a/cli/tests/js_unit_tests.rs b/cli/tests/js_unit_tests.rs
deleted file mode 100644
index 52c24679b..000000000
--- a/cli/tests/js_unit_tests.rs
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-
-mod integration;
-
-use test_util as util;
-
-mod js {
- use super::*;
-
- #[test]
- fn js_unit_tests_lint() {
- let status = util::deno_cmd()
- .arg("lint")
- .arg("--unstable")
- .arg(util::tests_path().join("unit"))
- .spawn()
- .unwrap()
- .wait()
- .unwrap();
- assert!(status.success());
- }
-
- #[test]
- fn js_unit_tests() {
- let _g = util::http_server();
-
- // Note that the unit tests are not safe for concurrency and must be run with a concurrency limit
- // of one because there are some chdir tests in there.
- // TODO(caspervonb) split these tests into two groups: parallel and serial.
- let mut deno = util::deno_cmd()
- .current_dir(util::root_path())
- .arg("test")
- .arg("--unstable")
- .arg("--location=http://js-unit-tests/foo/bar")
- .arg("--no-prompt")
- .arg("-A")
- .arg(util::tests_path().join("unit"))
- .spawn()
- .expect("failed to spawn script");
-
- let status = deno.wait().expect("failed to wait for the child process");
- assert_eq!(Some(0), status.code());
- assert!(status.success());
- }
-}