mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 20:47:52 +02:00
Significant technical debt has been eliminated. The latest best practices are also now adopted for dealing with runfiles and dealing with files across repositories. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=140762937
31 lines
789 B
Text
31 lines
789 B
Text
package(
|
|
default_testonly = 1,
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library", "closure_js_test")
|
|
|
|
closure_js_library(
|
|
name = "testing",
|
|
srcs = ["testing.js"],
|
|
deps = [
|
|
"@io_bazel_rules_closure//closure/library",
|
|
"@io_bazel_rules_closure//closure/library:testing",
|
|
],
|
|
)
|
|
|
|
closure_js_test(
|
|
name = "test",
|
|
size = "medium",
|
|
timeout = "short",
|
|
srcs = glob(["*_test.js"]),
|
|
compilation_level = "WHITESPACE_ONLY",
|
|
deps = [
|
|
":testing",
|
|
"//java/google/registry/ui/js",
|
|
"@io_bazel_rules_closure//closure/library",
|
|
"@io_bazel_rules_closure//closure/library:testing",
|
|
],
|
|
)
|