summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test_plugin/tests/integration_tests.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/test_plugin/tests/integration_tests.rs b/test_plugin/tests/integration_tests.rs
index cb76ef3ef..fa5141804 100644
--- a/test_plugin/tests/integration_tests.rs
+++ b/test_plugin/tests/integration_tests.rs
@@ -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");