Creates a separate bazel target for the google3 migration tests. The benefit is that it's faster to run tests for public migrations in development. Google3 lint rules are usually another story/implementation and the tests are quite slow due to how TSLint applies replacements. Additionally if something changes in the google3 tslint rules, the tests which aren't affected re-run unnecessarily. PR Close #31817
22 lines
472 B
Python
22 lines
472 B
Python
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages/core/schematics/migrations/google3",
|
|
"//packages/core/schematics/migrations/renderer-to-renderer2/google3",
|
|
"@npm//@types/shelljs",
|
|
"@npm//tslint",
|
|
],
|
|
)
|
|
|
|
jasmine_node_test(
|
|
name = "test",
|
|
deps = [
|
|
":test_lib",
|
|
"@npm//shelljs",
|
|
],
|
|
)
|