blob: 8ffb8fc59f191ba0c09ea28d14c71dec3cc53604 [file]
load("@npm_bazel_typescript//:index.bzl", "ts_config", "ts_library")
load("//:defaults.bzl", "karma_web_test_suite")
ts_library(
name = "lib",
srcs = ["decrement.ts"],
)
ts_config(
name = "tsconfig-test",
src = "tsconfig-test.json",
deps = [":tsconfig.json"],
)
ts_library(
name = "tests",
testonly = 1,
srcs = glob(["*.spec.ts"]),
tsconfig = ":tsconfig-test",
deps = [
":lib",
"@npm//@types/jasmine",
"@npm//@types/node",
],
)
ts_library(
name = "tests_setup",
testonly = 1,
srcs = ["setup_script.ts"],
tsconfig = ":tsconfig-test",
deps = [
"@npm//@types/jasmine",
"@npm//@types/node",
],
)
karma_web_test_suite(
name = "config_test",
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",
],
tags = ["native"],
runtime_deps = [
":tests_setup",
],
deps = [
":tests",
"@npm//karma-json-result-reporter",
],
)
karma_web_test_suite(
name = "no_config_test",
browsers = [
"@io_bazel_rules_webtesting//browsers:chromium-local",
"@io_bazel_rules_webtesting//browsers:firefox-local",
],
static_files = [
"static_script.js",
],
tags = ["native"],
runtime_deps = [
":tests_setup",
],
deps = [
":tests",
],
)
# Just a dummy test so that we have a test target for //... on certain bazelci platforms with bazel_integration_test
sh_test(
name = "dummy_test",
srcs = ["dummy_test.sh"],
)