Files
Kristiyan Kostadinov 204265f9a3 build: switch examples away from protractor
Reworks the `examples` tests not to depend on Protractor.
2026-08-14 08:22:34 -07:00

24 lines
525 B
Python

load("//tools:defaults.bzl", "ts_project")
package(default_visibility = ["//visibility:public"])
ts_project(
name = "test-utils",
testonly = True,
srcs = ["index.ts"],
tsconfig = "//packages/examples:tsconfig_e2e",
deps = [
"//:node_modules/@types/jasmine",
"//:node_modules/@types/node",
"//:node_modules/@types/selenium-webdriver",
"//:node_modules/selenium-webdriver",
],
)
filegroup(
name = "files_for_docgen",
srcs = glob([
"**/*.ts",
]),
)