21 lines
393 B
Python
21 lines
393 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",
|
||
|
"@npm//@types/shelljs",
|
||
|
"@npm//tslint",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
jasmine_node_test(
|
||
|
name = "test",
|
||
|
deps = [
|
||
|
":test_lib",
|
||
|
"@npm//shelljs",
|
||
|
],
|
||
|
)
|