blob: 89c86829c775dfc9010ff04553afb3a0657123be [file] [log] [blame]
load("//infra-sk:index.bzl", "karma_test", "ts_library")
karma_test(
name = "fps_test",
src = "fps_test.ts",
deps = [
":fps_ts_lib",
"//:node_modules/@types/chai",
"//:node_modules/chai",
],
)
ts_library(
name = "fps_ts_lib",
srcs = ["fps.ts"],
visibility = ["//visibility:public"],
)
ts_library(
name = "index_ts_lib",
srcs = ["index.ts"],
visibility = ["//visibility:public"],
deps = [":fps_ts_lib"],
)