angular-cn/modules/e2e_util/BUILD.bazel

20 lines
473 B
Python
Raw Normal View History

load("//tools:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "e2e_util",
testonly = 1,
srcs = glob(["*.ts"]),
deps = [
"//packages:types",
"//packages/benchpress",
"@ngdeps//@types/fs-extra",
"@ngdeps//@types/selenium-webdriver",
"@ngdeps//fs-extra",
"@ngdeps//node-uuid",
"@ngdeps//protractor",
"@ngdeps//selenium-webdriver",
],
)