https://github.com/angular/angular
Raw File
Tip revision: 7cd79b8e01c5d99fabab6439beb9c63078102f2e authored by Paul Gschwendtner on 21 April 2022, 13:45:42 UTC
build: updates to account for github primary branch rename [v11] (#45718)
Tip revision: 7cd79b8
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