angular/modules/playground/e2e_test/sourcemap/BUILD.bazel

20 lines
579 B
Text
Raw Normal View History

load("//modules/playground/e2e_test:example_test.bzl", "example_test")
example_test(
name = "sourcemap",
srcs = glob(["**/*.ts"]),
data = [
"//modules/playground/src/sourcemap:app_bundle",
"//modules/playground/src/sourcemap:index.ts",
"@npm//source-map",
],
# 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 = [
"@npm//@bazel/runfiles",
"@npm//source-map",
],
)