mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
27 lines
613 B
Text
27 lines
613 B
Text
load("//adev/shared-docs:defaults.bzl", "ts_project", "zoneless_jasmine_test")
|
|
|
|
ts_project(
|
|
name = "docs-code",
|
|
testonly = True,
|
|
srcs = glob([
|
|
"**/*.spec.mts",
|
|
]),
|
|
deps = [
|
|
"//adev:node_modules/@types/jsdom",
|
|
"//adev:node_modules/jsdom",
|
|
"//adev/shared-docs/pipeline/guides:guides_lib",
|
|
],
|
|
)
|
|
|
|
zoneless_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",
|
|
],
|
|
)
|