https://github.com/angular/angular
Raw File
Tip revision: 98de2176400c86e6bbcb98754811af3f7c65280c authored by Jessica Janiuk on 28 April 2021, 18:58:23 UTC
release: cut the v12.0.0-rc.1 release (#41864)
Tip revision: 98de217
BUILD.bazel
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")

ts_library(
    name = "test_lib",
    testonly = True,
    srcs = glob(
        ["**/*.ts"],
    ),
    deps = [
        "//packages:types",
        "//packages/compiler",
        "//packages/compiler/test:test_utils",
        "//packages/compiler/test/expression_parser/utils",
        "//packages/compiler/testing",
        "//packages/core",
    ],
)

jasmine_node_test(
    name = "test",
    bootstrap = ["//tools/testing:node_es5"],
    deps = [
        ":test_lib",
    ],
)
back to top