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
20 lines
383 B
Text
20 lines
383 B
Text
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
package(default_visibility = [
|
|
"//modules/playground:__subpackages__",
|
|
"//packages:__subpackages__",
|
|
])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ng_module(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
module_name = "@angular/private/testing",
|
|
deps = [
|
|
"//packages/core",
|
|
],
|
|
)
|