mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Migrate the final remaining non-zone.js package jasmine tests to the new toolchain PR Close #62169
29 lines
668 B
Text
29 lines
668 B
Text
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",
|
|
],
|
|
)
|