mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds a DI configuration option for signal forms that allows the developer to specify CSS classes that should be automatically added by the `Field` directive based on the field's status.
25 lines
596 B
Text
25 lines
596 B
Text
load("//tools:defaults.bzl", "ng_project", "zoneless_web_test_suite")
|
|
|
|
ng_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.spec.ts"]),
|
|
deps = [
|
|
"//:node_modules/zod",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/forms",
|
|
"//packages/forms/signals",
|
|
"//packages/forms/signals/compat",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-browser/testing",
|
|
"//packages/private/testing",
|
|
],
|
|
)
|
|
|
|
zoneless_web_test_suite(
|
|
name = "test",
|
|
deps = [
|
|
":test_lib",
|
|
],
|
|
)
|