test(ivy): fix or disable failing ivy tests (#26735)

These tests were previously not running on CI so they have always been broken,
or got broken just recently :-(.

test(ivy): mark failing test targets with fixme-ivy-jit and fixme-ivy-local tags

PR Close #26735
This commit is contained in:
Igor Minar
2018-10-25 20:47:28 -07:00
committed by Matias Niemelä
parent 30f319a11f
commit 40bbfbf961
21 changed files with 905 additions and 49 deletions

View File

@ -9,6 +9,10 @@ ts_library(
"index.ts",
"usage.ts",
],
tags = [
"ivy-only",
"no-ivy-jit",
],
deps = [
"//packages/core",
],
@ -23,6 +27,10 @@ ng_rollup_bundle(
# has an "external" directory for external dependencies.
# This should probably start with "angular/" and let the rule deal with it.
entry_point = "packages/core/test/bundling/injection/index.js",
tags = [
"ivy-only",
"no-ivy-jit",
],
deps = [
":injection",
"//packages/core",
@ -33,6 +41,10 @@ ts_library(
name = "test_lib",
testonly = True,
srcs = glob(["*_spec.ts"]),
tags = [
"ivy-only",
"no-ivy-jit",
],
deps = [
":injection",
"//packages:types",
@ -43,6 +55,10 @@ ts_library(
jasmine_node_test(
name = "test",
tags = [
"ivy-only",
"no-ivy-jit",
],
deps = [":test_lib"],
)
@ -50,4 +66,8 @@ js_expected_symbol_test(
name = "symbol_test",
src = ":bundle.min_debug.js",
golden = ":bundle.golden_symbols.json",
tags = [
"ivy-only",
"no-ivy-jit",
],
)