blob: d2d7e2879a3482fed5e01216144b94cc897c1889 [file] [log] [blame]
load("//internal:defaults.bzl", "karma_web_test_suite", "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",
],
)
karma_web_test_suite(
name = "testing_karma",
browsers = [
"@io_bazel_rules_webtesting//browsers:chromium-local",
"@io_bazel_rules_webtesting//browsers:firefox-local",
],
config_file = ":karma.conf.js",
static_files = [
"static_script.js",
],
runtime_deps = [
":tests_setup",
],
deps = [
":tests",
"@npm//karma-json-result-reporter",
],
)
karma_web_test_suite(
name = "testing_karma_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",
],
)
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",
],
)