https://github.com/angular/angular
Raw File
Tip revision: 7f8d6c1066651022a7d774784d62b97990fb72c6 authored by Matias Niemelä on 29 August 2018, 04:39:18 UTC
release: cut the v6.1.5 release
Tip revision: 7f8d6c1
BUILD.bazel
load("//tools:defaults.bzl", "ts_library", "ts_web_test_suite")
load("@build_bazel_rules_nodejs//:defs.bzl", "jasmine_node_test")

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