2018-09-11 18:11:32 -07:00
|
|
|
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite")
|
2017-12-06 06:56:49 -08:00
|
|
|
|
2019-01-16 10:19:01 +01:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
2017-12-06 06:56:49 -08:00
|
|
|
ts_library(
|
|
|
|
name = "test_lib",
|
2018-10-15 23:24:22 -07:00
|
|
|
testonly = True,
|
2017-12-01 14:23:03 -08:00
|
|
|
srcs = glob(
|
|
|
|
["**/*.ts"],
|
2017-12-16 11:35:47 -08:00
|
|
|
exclude = [
|
|
|
|
"**/*_node_only_spec.ts",
|
|
|
|
],
|
2017-12-01 14:23:03 -08:00
|
|
|
),
|
2018-12-17 22:09:39 -08:00
|
|
|
# Visible to //:test_web_all target
|
|
|
|
visibility = ["//:__pkg__"],
|
2017-12-06 06:56:49 -08:00
|
|
|
deps = [
|
|
|
|
"//packages/animations",
|
|
|
|
"//packages/animations/browser",
|
|
|
|
"//packages/animations/browser/testing",
|
|
|
|
"//packages/common",
|
2019-05-17 16:13:31 +02:00
|
|
|
"//packages/common/locales",
|
2017-12-06 06:56:49 -08:00
|
|
|
"//packages/compiler",
|
|
|
|
"//packages/compiler/testing",
|
|
|
|
"//packages/core",
|
2019-01-09 13:49:16 -08:00
|
|
|
"//packages/core/src/di/interface",
|
|
|
|
"//packages/core/src/interface",
|
2019-01-11 16:07:01 -08:00
|
|
|
"//packages/core/src/reflection",
|
2019-01-09 13:49:16 -08:00
|
|
|
"//packages/core/src/util",
|
2017-12-06 06:56:49 -08:00
|
|
|
"//packages/core/testing",
|
2019-08-10 12:51:30 +01:00
|
|
|
"//packages/localize/init",
|
2017-12-06 06:56:49 -08:00
|
|
|
"//packages/platform-browser",
|
|
|
|
"//packages/platform-browser-dynamic",
|
|
|
|
"//packages/platform-browser/animations",
|
|
|
|
"//packages/platform-browser/testing",
|
2018-07-27 13:49:22 -07:00
|
|
|
"//packages/private/testing",
|
2017-12-06 06:56:49 -08:00
|
|
|
"//packages/router",
|
|
|
|
"//packages/router/testing",
|
2019-02-20 09:54:42 -08:00
|
|
|
"@npm//rxjs",
|
|
|
|
"@npm//zone.js",
|
2017-12-06 06:56:49 -08:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-12-16 11:35:47 -08:00
|
|
|
ts_library(
|
|
|
|
name = "test_node_only_lib",
|
2018-10-15 23:24:22 -07:00
|
|
|
testonly = True,
|
2017-12-16 11:35:47 -08:00
|
|
|
srcs = glob(["**/*_node_only_spec.ts"]),
|
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
"//packages/compiler",
|
|
|
|
"//packages/compiler/testing",
|
|
|
|
"//packages/core",
|
2019-02-08 22:10:20 +00:00
|
|
|
"//packages/core/src/compiler",
|
2017-12-16 11:35:47 -08:00
|
|
|
"//packages/core/testing",
|
|
|
|
"//packages/platform-server",
|
|
|
|
"//packages/platform-server/testing",
|
2018-11-05 20:31:54 -08:00
|
|
|
"//packages/private/testing",
|
2017-12-16 11:35:47 -08:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-12-06 06:56:49 -08:00
|
|
|
jasmine_node_test(
|
|
|
|
name = "test",
|
2017-12-19 15:03:29 -08:00
|
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
2019-03-08 16:35:36 -08:00
|
|
|
shard_count = 4,
|
2017-12-16 11:35:47 -08:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
":test_node_only_lib",
|
|
|
|
"//packages/platform-server",
|
|
|
|
"//packages/platform-server/testing",
|
2017-12-18 15:37:05 -08:00
|
|
|
"//tools/testing:node",
|
2019-02-20 09:54:42 -08:00
|
|
|
"@npm//base64-js",
|
|
|
|
"@npm//source-map",
|
|
|
|
"@npm//zone.js",
|
2017-12-16 11:35:47 -08:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2018-05-11 09:43:06 -07:00
|
|
|
ts_web_test_suite(
|
2017-12-16 11:35:47 -08:00
|
|
|
name = "test_web",
|
2017-12-06 06:56:49 -08:00
|
|
|
deps = [
|
|
|
|
":test_lib",
|
|
|
|
],
|
|
|
|
)
|