49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite")
|
|
|
|
exports_files([
|
|
"browser/static_assets/200.html",
|
|
"static_assets/test.html",
|
|
])
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = 1,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/animations",
|
|
"//packages/animations/browser",
|
|
"//packages/animations/browser/testing",
|
|
"//packages/common",
|
|
"//packages/compiler",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-browser-dynamic",
|
|
"//packages/platform-browser/animations",
|
|
"//packages/platform-browser/testing",
|
|
"@rxjs",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "test",
|
|
bootstrap = ["angular/tools/testing/init_node_spec.js"],
|
|
# dissable since tests are running but not yet passing
|
|
tags = ["manual"],
|
|
deps = [
|
|
":test_lib",
|
|
"//tools/testing:node",
|
|
],
|
|
)
|
|
|
|
ts_web_test_suite(
|
|
name = "test_web",
|
|
static_files = [
|
|
":static_assets/test.html",
|
|
],
|
|
deps = [
|
|
":test_lib",
|
|
],
|
|
)
|