https://github.com/angular/angular
Raw File
Tip revision: aae062e8dbd5b3d59d05d029477cbb487fe8dd71 authored by Andrew Scott on 10 April 2024, 23:17:21 UTC
release: cut the v18.0.0-next.4 release
Tip revision: aae062e
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