mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds a new folder to dev-infra where shared testing utilities could be placed in. This commit already adds initial testing utilities for dealing with the `GitClient` and SemVer versions. The `GitClient` in the testing utilities simulates actual Git behavior in a virtual manner. It's not complete at all, but can be extended based on our needs. The currently implemented commands are the most basic ones that we'd need for our release tooling. PR Close #38656
15 lines
401 B
Text
15 lines
401 B
Text
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "testing",
|
|
srcs = glob(["*.ts"]),
|
|
module_name = "@angular/dev-infra-private/utils/testing",
|
|
visibility = ["//dev-infra:__subpackages__"],
|
|
deps = [
|
|
"//dev-infra/utils",
|
|
"@npm//@types/jasmine",
|
|
"@npm//@types/minimist",
|
|
"@npm//@types/node",
|
|
"@npm//minimist",
|
|
],
|
|
)
|