Skip to content

Instantly share code, notes, and snippets.

@royib
Created January 25, 2023 10:19
Show Gist options
  • Save royib/62cb23f02c07bd2ec458c1fd24fb4a9c to your computer and use it in GitHub Desktop.
Save royib/62cb23f02c07bd2ec458c1fd24fb4a9c to your computer and use it in GitHub Desktop.
bazel react test react build file
load("@aspect_rules_jest//jest:defs.bzl", "jest_test")
######Tests#####
jest_test(
name = "test_web",
config = "jest.config.js",
auto_configure_reporters = True,
data = glob(["src/**/*test.js"]) + [":node_modules/jest-junit"],
log_level = "debug",
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment