/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/progress-spinner/testing/BUILD.bazel
43 строки
908 B
Kristiyan Kostadinov
build: enable AoT compilation for all tests (#31930)
26 сен 2025, 23:25
Не верифицирован
26 сен 2025, 23:25
a2383cf
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "ng_project", "ng_web_test_suite") package(default_visibility = ["//visibility:public"]) ng_project( name = "testing", srcs = glob( ["**/*.ts"], exclude = ["**/*.spec.ts"], ), deps = [ "//:node_modules/@angular/core", "//src/cdk/coercion", "//src/cdk/testing", "//src/material/progress-spinner", ], ) 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/cdk/testing", "//src/cdk/testing/testbed", "//src/material/progress-spinner", ], ) ng_web_test_suite( name = "unit_tests", deps = [ ":unit_tests_lib", ], )