load("//tools:defaults.bzl", "jasmine_node_test", "ts_library") ts_library( name = "test_lib", testonly = True, srcs = glob(["**/*.ts"]), deps = [ "//packages:types", "//packages/animations", "//packages/common", "//packages/common/http", "//packages/common/http/testing", "//packages/compiler", "//packages/core", "//packages/core/testing", "//packages/http", "//packages/http/testing", "//packages/platform-browser", "//packages/platform-server", "//packages/private/testing", "@npm//rxjs", ], ) jasmine_node_test( name = "test", bootstrap = ["angular/tools/testing/init_node_spec.js"], tags = [ ], deps = [ ":test_lib", "//tools/testing:node", ], )