Revert "test: handle bootstrap templated_args in jasmine_node_test defaults.bzl (#34589)" (#34730)

This reverts commit da4782e67f.

PR Close #34730
This commit is contained in:
atscott
2020-01-10 13:39:52 -08:00
parent 01d1da67ee
commit 5e60215470
61 changed files with 142 additions and 83 deletions

View File

@ -70,7 +70,6 @@ ts_library(
jasmine_node_test(
name = "test",
bootstrap = ["//tools/testing:node_es5"],
data = [
"//packages/animations:npm_package",
"//packages/common:npm_package",
@ -80,10 +79,12 @@ jasmine_node_test(
# Disabled as these tests pertain to the old ngc compilation and are not relevant in Ivy.
"no-ivy-aot",
],
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
deps = [
":test_lib",
":test_node_only_lib",
"//tools/testing:node",
"//tools/testing:node_es5",
"@npm//base64-js",
"@npm//source-map",
],

View File

@ -16,10 +16,11 @@ ts_library(
jasmine_node_test(
name = "css_parser",
bootstrap = ["//tools/testing:node_es5"],
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
deps = [
":css_parser_lib",
"//tools/testing:node",
"//tools/testing:node_es5",
],
)

View File

@ -15,10 +15,11 @@ ts_library(
jasmine_node_test(
name = "expression_parser",
bootstrap = ["//tools/testing:node_es5"],
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
deps = [
":expression_parser_lib",
"//tools/testing:node",
"//tools/testing:node_es5",
],
)

View File

@ -13,10 +13,11 @@ ts_library(
jasmine_node_test(
name = "ml_parser",
bootstrap = ["//tools/testing:node_es5"],
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
deps = [
":ml_parser_lib",
"//tools/testing:node",
"//tools/testing:node_es5",
],
)

View File

@ -18,9 +18,10 @@ ts_library(
jasmine_node_test(
name = "test",
bootstrap = ["//tools/testing:node_es5"],
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
deps = [
":test_lib",
"//tools/testing:node",
"//tools/testing:node_es5",
],
)

View File

@ -17,10 +17,11 @@ ts_library(
jasmine_node_test(
name = "selector",
bootstrap = ["//tools/testing:node_es5"],
templated_args = ["--node_options=--require=$(rlocation $(location //tools/testing:node_es5))"],
deps = [
":selector_lib",
"//tools/testing:node",
"//tools/testing:node_es5",
],
)