mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
31e3eb20f9
Migrate karma tests throughout the repo to use the new web test runner based rule instead PR Close #62294
27 lines
516 B
Python
27 lines
516 B
Python
load("//tools:defaults2.bzl", "angular_jasmine_test", "ng_web_test_suite", "ts_project")
|
|
|
|
ts_project(
|
|
name = "ml_parser_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
interop_deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler/test/ml_parser/util",
|
|
],
|
|
)
|
|
|
|
angular_jasmine_test(
|
|
name = "ml_parser",
|
|
data = [
|
|
":ml_parser_lib",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "ml_parser_web",
|
|
deps = [
|
|
":ml_parser_lib_rjs",
|
|
],
|
|
)
|