mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
204265f9a3
Reworks the `examples` tests not to depend on Protractor.
24 lines
525 B
Python
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",
|
|
]),
|
|
)
|