/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
integration/module-tests/BUILD.bazel
29 строк
799 B
Kristiyan Kostadinov
build: enable more integration tests for aria
20 янв 2026, 11:00
20 янв 2026, 11:00
aa1bc04
Код
Авторство
О чём код?
load("//integration/module-tests:index.bzl", "module_test") load("//tools:defaults.bzl", "ts_project") ts_project( name = "test_lib", testonly = True, srcs = glob(["*.mts"]), source_map = False, tsconfig = "tsconfig.json", deps = [ "//:node_modules/@angular/compiler-cli", "//:node_modules/@types/node", "//:node_modules/typescript", ], ) module_test( name = "test", npm_packages = { "//src/aria:npm_package": "src/aria/npm_package", "//src/cdk:npm_package": "src/cdk/npm_package", "//src/material:npm_package": "src/material/npm_package", }, shard_count = 4, skipped_entry_points = [ # This entry-point is JIT and would fail the AOT test. "@angular/material/dialog/testing", ], )