-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
56 lines (51 loc) · 1.25 KB
/
BUILD.bazel
File metadata and controls
56 lines (51 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
load("//tools:defaults.bzl", "ng_project", "ng_web_test_suite")
package(default_visibility = ["//visibility:public"])
ng_project(
name = "input",
srcs = glob(
["**/*.ts"],
exclude = ["**/*.spec.ts"],
),
assets = glob([
"**/*.html",
"**/*.css",
]),
deps = [
"//:node_modules/@angular/core",
"//:node_modules/@angular/forms",
"//:node_modules/@angular/platform-browser",
"//:node_modules/@types/jasmine",
"//src/cdk/testing",
"//src/cdk/testing/testbed",
"//src/material/button",
"//src/material/icon",
"//src/material/input",
],
)
filegroup(
name = "source-files",
srcs = glob([
"**/*.html",
"**/*.css",
"**/*.ts",
]),
)
ng_project(
name = "unit_tests_lib",
testonly = True,
srcs = glob(["**/*.spec.ts"]),
deps = [
":input",
"//:node_modules/@angular/core",
"//:node_modules/@angular/forms",
"//:node_modules/@angular/platform-browser",
"//src/cdk/testing",
"//src/cdk/testing/testbed",
"//src/material/input",
"//src/material/input/testing",
],
)
ng_web_test_suite(
name = "unit_tests",
deps = [":unit_tests_lib"],
)