Skip to content

Commit 826b77b

Browse files
JoostKjosephperrott
authored andcommitted
test(core): tag render3 test targets as ivy-only (angular#40127)
The `render3` test targets are currently also executed for ViewEngine builds, even though the `render3` infrastructure only concerns Ivy infrastructure. This commit tags the test targets as ivy-only to disable those tests for View Engine. PR Close angular#40127
1 parent 7eadf2e commit 826b77b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

karma-js.conf.js

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ module.exports = function(config) {
8585
'dist/all/@angular/compiler/test/render3/**',
8686
'dist/all/@angular/core/test/bundling/**',
8787
'dist/all/@angular/core/test/render3/ivy/**',
88+
'dist/all/@angular/core/test/render3/jit/**',
8889
'dist/all/@angular/core/test/render3/perf/**',
8990
'dist/all/@angular/elements/schematics/**',
9091
'dist/all/@angular/examples/**/e2e_test/*',

packages/core/test/render3/BUILD.bazel

+6
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ jasmine_node_test(
8080
":domino_es5",
8181
"//tools/testing:node_es5",
8282
],
83+
tags = [
84+
"ivy-only",
85+
],
8386
deps = [
8487
":render3_node_lib",
8588
"//packages/zone.js/lib",
@@ -88,6 +91,9 @@ jasmine_node_test(
8891

8992
karma_web_test_suite(
9093
name = "render3_web",
94+
tags = [
95+
"ivy-only",
96+
],
9197
deps = [
9298
":render3_lib",
9399
],

0 commit comments

Comments
 (0)