Skip to content

Commit

Permalink
fix: fixup failing assert_contains test
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Oct 27, 2023
1 parent 150dc48 commit fb75337
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .aspect/workflows/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@ tasks:
buildifier:
gazelle:
test:
bazel:
flags:
- --instrumentation_filter=^//,-//jest/tests/fixed_args:fixed_args_test
coverage: true
upload_test_logs: executed
3 changes: 2 additions & 1 deletion jest/private/jest_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ def _impl(ctx):
"--config",
# quote the path since it might have special chars such as parens.
# quoting ensures that the shell doesn't do any globbing or splitting.
"'" + paths.join(unwind_chdir_prefix, generated_config.short_path) + "'",
# NB: intentionally use double quotes
"\"" + paths.join(unwind_chdir_prefix, generated_config.short_path) + "\"",
])
if ctx.attr.log_level == "debug":
fixed_args.append("--debug")
Expand Down

0 comments on commit fb75337

Please sign in to comment.