https://github.com/angular/angular
Raw File
Tip revision: 79fb9d449c0fab9bdb5886f09d4fc9cd52f89318 authored by George Kalpakas on 04 February 2019, 14:45:45 UTC
build(docs-infra): use pinned dependencies when possible in `ng-packages-installer` (#28510)
Tip revision: 79fb9d4
BUILD.bazel
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library", "ts_web_test_suite")

ts_library(
    name = "test_lib",
    testonly = 1,
    srcs = glob(
        ["**/*.ts"],
        exclude = ["**/*_node_only_spec.ts"],
    ),
    deps = [
        "//packages/common/http",
        "//packages/common/http/testing",
        "//packages/core",
        "//packages/core/testing",
        "@rxjs",
        "@rxjs//operators",
    ],
)

jasmine_node_test(
    name = "test",
    bootstrap = ["angular/tools/testing/init_node_spec.js"],
    deps = [
        ":test_lib",
        "//tools/testing:node",
    ],
)

ts_web_test_suite(
    name = "test_web",
    deps = [
        ":test_lib",
    ],
)
back to top