Skip to content

Commit 51f648d

Browse files
committed
fix bazel files
1 parent 054766c commit 51f648d

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

src/material-experimental/mdc-checkbox/testing/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
package(default_visibility = ["//visibility:public"])
22

3-
load("//tools:defaults.bzl", "ng_test_library", "ng_web_test_suite", "ng_module")
3+
load("//tools:defaults.bzl", "ng_module", "ng_test_library", "ng_web_test_suite")
44

55
ng_module(
66
name = "testing",
7-
module_name = "@angular/material-experimental/mdc-checkbox/testing",
87
srcs = glob(
98
["**/*.ts"],
109
exclude = ["**/*.spec.ts"],
1110
),
11+
module_name = "@angular/material-experimental/mdc-checkbox/testing",
1212
deps = [
13-
"//src/material/checkbox/testing",
1413
"//src/cdk/coercion",
1514
"//src/cdk/testing",
15+
"//src/material/checkbox/testing",
1616
],
1717
)
1818

src/material/checkbox/testing/BUILD.bazel

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
package(default_visibility = ["//visibility:public"])
22

3-
load("//tools:defaults.bzl", "ng_test_library", "ng_web_test_suite", "ng_module")
3+
load("//tools:defaults.bzl", "ng_module", "ng_test_library", "ng_web_test_suite")
44

55
ng_module(
66
name = "testing",
7-
module_name = "@angular/material/checkbox/testing",
87
srcs = glob(
98
["**/*.ts"],
109
exclude = ["**/*.spec.ts"],
1110
),
11+
module_name = "@angular/material/checkbox/testing",
1212
deps = [
1313
"//src/cdk/coercion",
1414
"//src/cdk/testing",
@@ -25,15 +25,18 @@ ng_test_library(
2525
"//src/material/checkbox",
2626
"@npm//@angular/forms",
2727
"@npm//@angular/platform-browser",
28-
]
28+
],
2929
)
3030

3131
ng_test_library(
3232
name = "unit_tests_lib",
33-
srcs = glob(["**/*.spec.ts"], exclude = ["shared.spec.ts"]),
33+
srcs = glob(
34+
["**/*.spec.ts"],
35+
exclude = ["shared.spec.ts"],
36+
),
3437
deps = [
35-
":testing",
3638
":shared_unit_tests",
39+
":testing",
3740
"//src/material/checkbox",
3841
],
3942
)

0 commit comments

Comments
 (0)