36 lines
667 B
Python
36 lines
667 B
Python
|
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
|
||
|
|
||
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
ts_library(
|
||
|
name = "size-tracking",
|
||
|
srcs = glob(
|
||
|
["**/*.ts"],
|
||
|
exclude = ["**/*_spec.ts"],
|
||
|
),
|
||
|
tsconfig = "//tools:tsconfig.json",
|
||
|
deps = [
|
||
|
"@npm//@types/node",
|
||
|
"@npm//@types/source-map",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
ts_library(
|
||
|
name = "test_lib",
|
||
|
testonly = True,
|
||
|
srcs = glob(["**/*_spec.ts"]),
|
||
|
deps = [
|
||
|
":size-tracking",
|
||
|
"@npm//@types/source-map",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
jasmine_node_test(
|
||
|
name = "test",
|
||
|
data = [],
|
||
|
deps = [
|
||
|
":test_lib",
|
||
|
"@npm//source-map",
|
||
|
],
|
||
|
)
|