https://github.com/angular/angular
Raw File
Tip revision: 174997150f814f2a9addd41e64b78b2f27e7b26a authored by Andrew Kushnir on 01 March 2023, 18:45:33 UTC
release: cut the v15.2.1 release
Tip revision: 1749971
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"],
    deps = [
        ":test_lib",
    ],
)
back to top