mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit removes most tests that were designated as only covering View Engine code. It also removes tag filters from CI and local commands to run tests. In a few cases (such as with the packages/compiler tests), this tag was improperly applied, and certain test cases have been added back running in Ivy mode. This commit also empties `@angular/compiler/testing` as it is no longer necessary (this is safe since compiler packages are not public API). It can be deleted in the future. PR Close #43884
28 lines
645 B
Text
28 lines
645 B
Text
load("//tools:defaults.bzl", "jasmine_node_test", "karma_web_test_suite", "ts_library")
|
|
|
|
ts_library(
|
|
name = "expression_parser_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler/test/expression_parser/utils",
|
|
"//packages/platform-browser/testing",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "expression_parser",
|
|
bootstrap = ["//tools/testing:node_es5"],
|
|
deps = [
|
|
":expression_parser_lib",
|
|
],
|
|
)
|
|
|
|
karma_web_test_suite(
|
|
name = "expression_parser_web",
|
|
deps = [
|
|
":expression_parser_lib",
|
|
],
|
|
)
|