angular-cn/packages/common/http/testing/test/BUILD.bazel

33 lines
644 B
Python
Raw Normal View History

load("//tools:defaults.bzl", "jasmine_node_test", "karma_web_test_suite", "ts_library")
ts_library(
name = "test_lib",
testonly = True,
srcs = glob(
["**/*.ts"],
),
# Visible to //:saucelabs_unit_tests_poc target
visibility = ["//:__pkg__"],
deps = [
"//packages/common/http",
"//packages/common/http/testing",
"@npm//rxjs",
],
)
jasmine_node_test(
name = "test",
bootstrap = ["//tools/testing:node_es5"],
deps = [
":test_lib",
"//tools/testing:node",
],
)
karma_web_test_suite(
name = "test_web",
deps = [
":test_lib",
],
)