1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

tests(cli): ignore previously unignored test (#14104)

Ref: #14103
This commit is contained in:
Kitson Kelly 2022-03-24 12:45:45 +11:00 committed by GitHub
parent f580134b1e
commit c755548e02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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