
* Move tools/brotli-cli, tools/browsers, tools/components, tools/ng_rollup_bundle, and modules/e2e_util to dev-infra/benchmarking * Fix imports and references to moved folders and files * Set up BUILD.bazel files for moved folders so they can be packaged with dev-infra's :npm_package PR Close #36434
16 lines
502 B
Python
16 lines
502 B
Python
load("//tools:defaults.bzl", "protractor_web_test_suite")
|
|
|
|
"""
|
|
Macro that can be used to define a e2e test in `modules/benchmarks`. Targets created through
|
|
this macro differentiate from a "benchmark_test" as they will run on CI and do not run
|
|
with `@angular/benchpress`.
|
|
"""
|
|
|
|
def e2e_test(name, server, **kwargs):
|
|
protractor_web_test_suite(
|
|
name = name,
|
|
on_prepare = "//dev-infra/benchmark/component_benchmark:start-server.js",
|
|
server = server,
|
|
**kwargs
|
|
)
|