From c755548e0212ea6f4fc211adc85bfdc581e6045e Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Thu, 24 Mar 2022 12:45:45 +1100 Subject: [PATCH] tests(cli): ignore previously unignored test (#14104) Ref: #14103 --- cli/tests/integration/compile_tests.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs index 40bb250a06..c1f42632bf 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