mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Add a flag to disable specific tests when testing the template pipeline Mark the currently failing tests Add the template pipeline tests to CI Update package.json Co-authored-by: Paul Gschwendtner <paulgschwendtner@gmail.com> PR Close #50582
25 lines
763 B
Text
25 lines
763 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test_helpers",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
visibility = [
|
|
"//packages/compiler-cli/test/compliance:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
|
"//packages/compiler-cli/src/ngtsc/file_system/testing",
|
|
"//packages/compiler-cli/src/ngtsc/logging",
|
|
"//packages/compiler-cli/src/ngtsc/sourcemaps",
|
|
"//packages/compiler-cli/src/ngtsc/testing",
|
|
"//packages/compiler/src/template/pipeline/switch",
|
|
"@npm//@bazel/runfiles",
|
|
"@npm//typescript",
|
|
],
|
|
)
|