Files
Joey Perrott 31e3eb20f9 build: migrate to use web test runner rules (#62294)
Migrate karma tests throughout the repo to use the new web test runner based rule instead

PR Close #62294
2025-06-26 17:20:49 +00:00

29 lines
515 B
Python

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",
],
)