diff options
-rw-r--r-- | cli/tests/integration/compile_tests.rs | 4 |
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 |