/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/aria/menu/testing/BUILD.bazel
40 строк
792 B
Cheng-Hsuan Tsai
feat(aria/menu): introduce menu harness (#33067)
13 апр 2026, 19:38
Не верифицирован
13 апр 2026, 19:38
75fae52
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "ng_project", "ng_web_test_suite", "ts_project") package(default_visibility = ["//visibility:public"]) ts_project( name = "testing", srcs = glob( ["**/*.ts"], exclude = ["**/*.spec.ts"], ), deps = [ "//src/cdk/testing", ], ) filegroup( name = "source-files", srcs = glob(["**/*.ts"]), ) ng_project( name = "unit_tests_lib", testonly = True, srcs = glob(["**/*.spec.ts"]), deps = [ ":testing", "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", "//src/aria/menu", "//src/cdk/testing", "//src/cdk/testing/testbed", ], ) ng_web_test_suite( name = "unit_tests", deps = [ ":unit_tests_lib", ], )