/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/BUILD.bazel
26 строк
751 B
Kristiyan Kostadinov
build: remove reflect-metadata dependency (#31301)
06 июн 2025, 20:56
Не верифицирован
06 июн 2025, 20:56
3aece5d
Код
Авторство
О чём код?
load("@aspect_rules_ts//ts:defs.bzl", rules_js_tsconfig = "ts_config") load("//tools:defaults.bzl", "ts_project") package(default_visibility = ["//visibility:public"]) exports_files(["bazel-karma-local-config.js"]) rules_js_tsconfig( name = "tsconfig", src = "tsconfig.json", deps = ["//src:build-tsconfig"], ) # Common set-up for all Angular Material and CDK tests. ts_project( name = "angular_test_init", testonly = True, # This file *must* end with "spec" in order for "karma_web_test_suite" to load it. srcs = ["angular-test.init.ts"], tsconfig = ":tsconfig", deps = [ "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", "//:node_modules/zone.js", ], )