Files
Joey Perrott 8d581502ca build: migrate modules to use @rules_browsers protractor rules (#62345)
Use the protractor rules from `@rules_browsers` for the module directory.

PR Close #62345
2025-06-27 22:27:52 +00:00

18 lines
512 B
Python

load("//modules/playground/e2e_test:example_test.bzl", "example_test")
example_test(
name = "sourcemap",
srcs = glob(["**/*.ts"]),
data = [
"//modules/playground/src/sourcemap:assets",
],
# Source-Map is using WASM and cannot be bundled for specs.
external = ["source-map"],
server = "//modules/playground/src/sourcemap:devserver",
use_legacy_webdriver_types = False,
deps = [
"//:node_modules/@bazel/runfiles",
"//:node_modules/source-map",
],
)