https://github.com/angular/angular
Raw File
Tip revision: 9b4263bf70039ebb9f8d1eb81fc082d8a2c63a15 authored by Joey Perrott on 10 February 2021, 23:32:04 UTC
release: cut the v12.0.0-next.0 release (#40793)
Tip revision: 9b4263b
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