Files
Joey Perrott eddc296b94 build: migrate final non-zone.js jasmine tests (#62170)
Migrate the final remaining non-zone.js package jasmine tests to the new toolchain

PR Close #62170
2025-06-24 08:48:00 +00:00

30 lines
668 B
Python

load("//adev/shared-docs:defaults.bzl", "ts_project")
load("//tools:defaults2.bzl", "jasmine_test")
ts_project(
name = "docs-code",
testonly = True,
srcs = glob([
"**/*.spec.mts",
]),
deps = [
"//:node_modules/@bazel/runfiles",
"//:node_modules/@types/jsdom",
"//:node_modules/jsdom",
"//adev/shared-docs/pipeline/guides:guides_lib_rjs",
],
)
jasmine_test(
name = "test",
data = [
"docs-code.md",
"example-with-eslint-comment.ts",
"example-with-region.ts",
"messages.fr.xlf.html",
"new-code.ts",
"old-code.ts",
":docs-code_rjs",
],
)