blob: ca8dd3fcf18c43d17f1d10f729d7ec777eb5632e [file] [log] [blame]
load("//internal:defaults.bzl", "ts_library", "ts_web_test_suite")
ts_library(
name = "lib",
srcs = ["decrement.ts"],
)
ts_library(
name = "tests",
testonly = 1,
srcs = glob(["*.spec.ts"]),
tsconfig = "//examples:tsconfig-test",
deps = [
":lib",
"@npm//@types/jasmine",
"@npm//@types/node",
],
)
ts_library(
name = "tests_setup",
testonly = 1,
srcs = ["setup_script.ts"],
tsconfig = "//examples:tsconfig-test",
deps = [
"@npm//@types/jasmine",
"@npm//@types/node",
],
)
ts_web_test_suite(
name = "testing",
browsers = [
"@io_bazel_rules_webtesting//browsers:chromium-local",
"@io_bazel_rules_webtesting//browsers:firefox-local",
],
static_files = [
"static_script.js",
],
runtime_deps = [
":tests_setup",
],
deps = [
":tests",
],
)
ts_web_test_suite(
name = "testing_sauce",
browsers = [
"@io_bazel_rules_webtesting//browsers/sauce:chrome-win10",
],
tags = [
"sauce",
# TODO(alexeagle): enable on CI once we have set the SAUCE env variables
"manual",
],
deps = [
":tests",
],
)