Adds two new helper functions that can be used when unit testing Angular services that depend upon upgraded AngularJS services, or vice versa. The functions return a module (AngularJS or NgModule) that is configured to wire up the Angular and AngularJS injectors without the need to actually bootstrap a full hybrid application. This makes it simpler and faster to unit test services. PR Close #16848
30 lines
624 B
Python
30 lines
624 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "ts_library", "ts_web_test_suite")
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/upgrade/src/common",
|
|
"//packages/upgrade/src/common/test/helpers",
|
|
"//packages/upgrade/static",
|
|
"//packages/upgrade/static/testing",
|
|
],
|
|
)
|
|
|
|
ts_web_test_suite(
|
|
name = "test",
|
|
static_files = [
|
|
"//:angularjs_scripts",
|
|
],
|
|
deps = [
|
|
":test_lib",
|
|
],
|
|
)
|