angular/adev/shared-docs/testing/BUILD.bazel
Joey Perrott b84859073b build: migrate to use web test runner rules (#62292)
Migrate karma tests throughout the repo to use the new web test runner based rule instead

PR Close #62292
2025-06-26 17:19:10 +00:00

28 lines
515 B
Text

load("//adev/shared-docs:defaults.bzl", "ts_project")
package(default_visibility = ["//visibility:private"])
ts_project(
name = "testing",
srcs = [
"index.ts",
],
visibility = ["//adev/shared-docs:__subpackages__"],
deps = [
":lib_rjs",
],
)
ts_project(
name = "lib",
srcs = glob(
["*.ts"],
exclude = [
"index.ts",
],
),
deps = [
"//:node_modules/@webcontainer/api",
"//packages/core:core_rjs",
],
)