mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
cbc258eec8
Remove the interop macros and final usages PR Close #62908
34 lines
645 B
Python
34 lines
645 B
Python
load("//devtools/tools:defaults.bzl", "ng_web_test_suite", "ts_project", "ts_test_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "shared-utils",
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
exclude = [
|
|
"**/*.spec.ts",
|
|
"src/test.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//:node_modules/@angular/core",
|
|
],
|
|
)
|
|
|
|
ts_test_library(
|
|
name = "shared_utils_test",
|
|
srcs = glob(["**/*.spec.ts"]),
|
|
deps = [
|
|
":shared-utils",
|
|
"//:node_modules/@angular/core",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "test",
|
|
deps = [
|
|
":shared_utils_test",
|
|
],
|
|
)
|