https://github.com/angular/angular
Raw File
Tip revision: a301b36f1f711ab956e37c4aee0010b44d9810ef authored by Andrew Kushnir on 09 March 2022, 17:04:59 UTC
release: cut the v14.0.0-next.6 release (#45301)
Tip revision: a301b36
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/expression_parser/utils",
        "//packages/core",
    ],
)

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