ci: mark core/schematics/test:test and compiler-cli/test:perform_watch test as view engine only (#43862)

Both test targets fail because, at test time, they use the view engine compiler, even when bazel sets the
configuration to use ivy.

PR Close #43862
This commit is contained in:
Joey Perrott 2021-10-15 14:40:58 -07:00 committed by Andrew Kushnir
parent 737f71e3aa
commit fbd2e4f0cd
2 changed files with 8 additions and 0 deletions

View file

@ -118,6 +118,10 @@ jasmine_node_test(
data = [
"@npm//@angular/core-12",
],
tags = [
# TODO: Reenable tests after determining if they appropriately rely on ViewEngine
"view-engine-only",
],
deps = [
":perform_watch_lib",
"//packages/core",

View file

@ -40,6 +40,10 @@ ts_library(
jasmine_node_test(
name = "test",
tags = [
# TODO: Reenable tests after determining if they appropriately rely on ViewEngine
"view-engine-only",
],
deps = [
":test_lib",
"@npm//shelljs",