summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 9bdc1db60..89b46acf3 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -32,6 +32,19 @@ fn std_tests() {
}
#[test]
+fn std_lint() {
+ let status = util::deno_cmd()
+ .arg("lint")
+ .arg("--unstable")
+ .arg(util::root_path().join("std"))
+ .spawn()
+ .unwrap()
+ .wait()
+ .unwrap();
+ assert!(status.success());
+}
+
+#[test]
fn x_deno_warning() {
let g = util::http_server();
let output = util::deno_cmd()