2019-02-01 13:46:38 +00:00
|
|
|
load("//modules/playground/e2e_test:example_test.bzl", "example_test")
|
|
|
|
|
|
|
|
|
|
example_test(
|
|
|
|
|
name = "sourcemap",
|
|
|
|
|
srcs = glob(["**/*.ts"]),
|
|
|
|
|
data = [
|
2022-12-14 19:30:53 +00:00
|
|
|
"//modules/playground/src/sourcemap:app_bundle",
|
2019-11-27 01:34:12 +00:00
|
|
|
"//modules/playground/src/sourcemap:index.ts",
|
2022-12-14 19:30:53 +00:00
|
|
|
"@npm//source-map",
|
2019-02-01 13:46:38 +00:00
|
|
|
],
|
2022-12-14 19:30:53 +00:00
|
|
|
# Source-Map is using WASM and cannot be bundled for specs.
|
|
|
|
|
external = ["source-map"],
|
2019-02-01 13:46:38 +00:00
|
|
|
server = "//modules/playground/src/sourcemap:devserver",
|
2022-07-19 09:52:03 +00:00
|
|
|
use_legacy_webdriver_types = False,
|
2021-02-04 22:38:25 +00:00
|
|
|
deps = [
|
2022-12-14 19:30:53 +00:00
|
|
|
"@npm//@bazel/runfiles",
|
2021-02-04 22:38:25 +00:00
|
|
|
"@npm//source-map",
|
|
|
|
|
],
|
2019-02-01 13:46:38 +00:00
|
|
|
)
|