File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 6
6
licenses (["notice" ]) # MIT
7
7
8
8
load ("@npm_bazel_typescript//:index.bzl" , "ts_library" )
9
+ load ("@npm_bazel_jasmine//:index.bzl" , "jasmine_node_test" )
9
10
load ("//tools:ts_json_schema.bzl" , "ts_json_schema" )
10
11
11
12
package (default_visibility = ["//visibility:public" ])
@@ -221,3 +222,27 @@ ts_json_schema(
221
222
"commands/definitions.json" ,
222
223
],
223
224
)
225
+
226
+ ts_library (
227
+ name = "angular-cli_test_lib" ,
228
+ testonly = True ,
229
+ srcs = glob (
230
+ include = [
231
+ "**/*_spec.ts" ,
232
+ "**/*_spec_large.ts" ,
233
+ ],
234
+ ),
235
+ # strict_checks = False,
236
+ tsconfig = "//:tsconfig-test.json" ,
237
+ deps = [
238
+ ":angular-cli" ,
239
+ "//packages/angular_devkit/core" ,
240
+ "@npm//@types/jasmine" ,
241
+ "@npm//@types/node" ,
242
+ ],
243
+ )
244
+
245
+ jasmine_node_test (
246
+ name = "angular-cli_test" ,
247
+ srcs = [":angular-cli_test_lib" ],
248
+ )
You can’t perform that action at this time.
0 commit comments