2018-03-15 21:33:52 -04:00
|
|
|
load("//tools:defaults.bzl", "ts_library", "ts_web_test")
|
2017-12-16 23:08:49 -05:00
|
|
|
load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2018-03-20 20:02:50 -04:00
|
|
|
# Test that should only be run in node
|
|
|
|
NODE_ONLY = [
|
|
|
|
"**/*_node_only_spec.ts",
|
|
|
|
"aot/**/*.ts",
|
|
|
|
"render3/**/*.ts",
|
|
|
|
]
|
|
|
|
|
2017-12-06 09:56:49 -05:00
|
|
|
ts_library(
|
2017-12-16 23:08:49 -05:00
|
|
|
name = "test_lib",
|
2017-12-06 09:56:49 -05:00
|
|
|
testonly = 1,
|
2017-12-16 23:08:49 -05:00
|
|
|
srcs = glob(
|
|
|
|
["**/*.ts"],
|
2018-03-20 20:02:50 -04:00
|
|
|
exclude = NODE_ONLY,
|
2017-12-16 23:08:49 -05:00
|
|
|
),
|
2017-12-06 09:56:49 -05:00
|
|
|
deps = [
|
|
|
|
"//packages:types",
|
|
|
|
"//packages/common",
|
|
|
|
"//packages/compiler",
|
|
|
|
"//packages/compiler/testing",
|
|
|
|
"//packages/core",
|
|
|
|
"//packages/core/testing",
|
|
|
|
"//packages/platform-browser",
|
|
|
|
"//packages/platform-browser-dynamic",
|
|
|
|
"//packages/platform-browser/testing",
|
|
|
|
],
|
|
|
|
)
|
2017-12-16 23:08:49 -05:00
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "test_node_only_lib",
|
|
|
|
testonly = 1,
|
2018-03-20 20:02:50 -04:00
|
|
|
srcs = glob(NODE_ONLY),
|
2017-12-16 23:08:49 -05:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
"//packages/compiler",
|
2018-03-20 20:02:50 -04:00
|
|
|
"//packages/compiler-cli",
|
2017-12-16 23:08:49 -05:00
|
|
|
"//packages/compiler/testing",
|
2018-03-20 20:02:50 -04:00
|
|
|
"//packages/core",
|
2017-12-16 23:08:49 -05:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
jasmine_node_test(
|
|
|
|
name = "test",
|
2017-12-19 18:03:29 -05:00
|
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
2018-03-20 20:02:50 -04:00
|
|
|
data = [
|
|
|
|
"//packages/animations:npm_package",
|
|
|
|
"//packages/common:npm_package",
|
|
|
|
"//packages/core:npm_package",
|
|
|
|
],
|
2017-12-16 23:08:49 -05:00
|
|
|
# dissable since tests are running but not yet passing
|
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
":test_node_only_lib",
|
|
|
|
"//packages/core",
|
2017-12-18 18:37:05 -05:00
|
|
|
"//tools/testing:node",
|
2017-12-16 23:08:49 -05:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
ts_web_test(
|
|
|
|
name = "test_web",
|
2018-03-15 21:33:52 -04:00
|
|
|
# disable since tests are running but not yet passing
|
2017-12-16 23:08:49 -05:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
],
|
|
|
|
)
|