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
30 lines
552 B
Python
30 lines
552 B
Python
load("//tools:defaults2.bzl", "angular_jasmine_test", "ng_web_test_suite", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
ts_project(
|
|
name = "compiler_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
interop_deps = [
|
|
"//packages/core/src/compiler",
|
|
"//packages/core/src/util",
|
|
],
|
|
)
|
|
|
|
angular_jasmine_test(
|
|
name = "compiler",
|
|
data = [
|
|
":compiler_lib_rjs",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "compiler_web",
|
|
deps = [
|
|
":compiler_lib_rjs",
|
|
],
|
|
)
|