mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
Fix warnings on windows build (#3697)
This commit is contained in:
parent
fe5662058e
commit
ad6635fab5
1 changed files with 3 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason.
|
||||
#![cfg(not(windows))]
|
||||
|
||||
use deno::test_util::*;
|
||||
use std::process::Command;
|
||||
|
||||
|
@ -12,8 +15,6 @@ const BUILD_VARIANT: &str = "debug";
|
|||
#[cfg(not(debug_assertions))]
|
||||
const BUILD_VARIANT: &str = "release";
|
||||
|
||||
// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason.
|
||||
#[cfg(not(windows))]
|
||||
#[test]
|
||||
fn basic() {
|
||||
let mut build_plugin_base = Command::new("cargo");
|
||||
|
|
Loading…
Reference in a new issue