summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2022-03-24 12:45:45 +1100
committerGitHub <noreply@github.com>2022-03-24 12:45:45 +1100
commitc755548e0212ea6f4fc211adc85bfdc581e6045e (patch)
tree56eb1ee24c3f1cf347983fbd4c44c992b938402d
parentf580134b1e4b75bc0e7579ea30cbf9f8c9ea3459 (diff)
tests(cli): ignore previously unignored test (#14104)
Ref: #14103
-rw-r--r--cli/tests/integration/compile_tests.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs
index 40bb250a0..c1f42632b 100644
--- a/cli/tests/integration/compile_tests.rs
+++ b/cli/tests/integration/compile_tests.rs
@@ -36,6 +36,10 @@ fn compile() {
assert_eq!(output.stdout, "Welcome to Deno!\n".as_bytes());
}
+// this is ignored, because when building on a release build, the test attempts
+// to download a binary of a yet to be published version.
+// TODO(@kitsonk) https://github.com/denoland/deno/issues/14103
+#[ignore]
#[test]
#[cfg(windows)]
// https://github.com/denoland/deno/issues/9667