blob: d732577b9ed002cacb6fa26d2646734895101a36 [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_web_test_suite(
name = "testing",
browsers = [
"@io_bazel_rules_webtesting//browsers:chromium-local",
# TODO(gregmagolan): re-enable once `target_wrapped_test.conf.js does not exist!` issue resolved
# "@io_bazel_rules_webtesting//browsers:firefox-local",
],
static_files = [
"static_script.js",
],
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",
],
)