Skip to content

Commit

Permalink
chore: disable a test on windows
Browse files Browse the repository at this point in the history
It has wrong slashes or doesn't handle runfiles correctly
  • Loading branch information
alexeagle committed Mar 20, 2023
1 parent 6377fa2 commit f4eb061
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples/source_map_support/test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,23 @@ js_test(
name = "stack_trace_support_test",
data = [":compile"],
entry_point = ":a.js",
target_compatible_with = select({
# TODO(jbedard): fix CI failure, like
# https://github.com/aspect-build/rules_swc/actions/runs/4471322159/jobs/7856057314?pr=187
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
)

js_test(
name = "stack_trace_support_with_chdir_test",
chdir = "examples",
data = [":compile"],
entry_point = ":a.js",
target_compatible_with = select({
# TODO(jbedard): fix CI failure, like
# https://github.com/aspect-build/rules_swc/actions/runs/4471322159/jobs/7856057314?pr=187
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
)

0 comments on commit f4eb061

Please sign in to comment.