mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
d9c980a958
Resolves some initial test failures after updating to TypeScript 6.
32 lines
951 B
Python
32 lines
951 B
Python
load("//tools:defaults.bzl", "jasmine_test", "ts_project")
|
|
|
|
ts_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*_spec.ts"],
|
|
),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
|
"//packages/compiler-cli/src/ngtsc/file_system/testing",
|
|
"//packages/compiler-cli/src/ngtsc/logging",
|
|
"//packages/compiler-cli/src/ngtsc/logging/testing",
|
|
"//packages/compiler-cli/src/ngtsc/testing",
|
|
"//packages/localize/tools",
|
|
"//packages/localize/tools/test:test_lib",
|
|
"//packages/localize/tools/test/helpers",
|
|
],
|
|
)
|
|
|
|
jasmine_test(
|
|
name = "integration",
|
|
data = [
|
|
":test_lib",
|
|
"//:node_modules/tinyglobby",
|
|
"//:node_modules/yargs",
|
|
"//packages/localize/tools/test/extract/integration/test_files",
|
|
"//packages/localize/tools/test/extract/integration/test_files:bundle",
|
|
],
|
|
)
|