From d1194e8bcf78856864a863526bea9af48b4cac82 Mon Sep 17 00:00:00 2001 From: camc314 <18101008+camc314@users.noreply.github.com> Date: Mon, 14 Jul 2025 13:03:01 +0000 Subject: [PATCH] test(oxlint): ignore test on windows (#12262) --- apps/oxlint/src/lint.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/oxlint/src/lint.rs b/apps/oxlint/src/lint.rs index de24e8972aca8..bb13b713f3db6 100644 --- a/apps/oxlint/src/lint.rs +++ b/apps/oxlint/src/lint.rs @@ -694,6 +694,7 @@ mod test { } #[test] + #[cfg(not(target_os = "windows"))] // Skipped on Windows due to snapshot diffs from path separators (`/` vs `\`) fn oxlint_config_auto_detection_parse_error() { let args = &["debugger.js"]; Tester::new().with_cwd("fixtures/auto_config_parse_error".into()).test_and_snapshot(args);