Switches the `largeform` benchmarks to Bazel. This is the last remaining e2e test within `modules/`. PR Close #28645
16 lines
387 B
Python
16 lines
387 B
Python
package(default_visibility = ["//modules/benchmarks:__subpackages__"])
|
|
|
|
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "tests_lib",
|
|
testonly = 1,
|
|
srcs = ["largeform_perf.spec.ts"],
|
|
tsconfig = "//modules/benchmarks:tsconfig-e2e.json",
|
|
deps = [
|
|
"//modules/e2e_util",
|
|
"@ngdeps//@types/jasminewd2",
|
|
"@ngdeps//protractor",
|
|
],
|
|
)
|