File tree 2 files changed +30
-1
lines changed
material.angular.io/src/app/shared
2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -526,7 +526,8 @@ const DOCS: {[key: string]: DocCategory[]} = {
526
526
name : 'Components' ,
527
527
summary : 'Unstyled components with useful functionality.' ,
528
528
items : [
529
- { id : 'stepper' ,
529
+ {
530
+ id : 'stepper' ,
530
531
name : 'Stepper' ,
531
532
summary : 'Presents content as steps through which to progress.' ,
532
533
examples : [
@@ -552,6 +553,29 @@ const DOCS: {[key: string]: DocCategory[]} = {
552
553
} ,
553
554
]
554
555
} ,
556
+ {
557
+ id : 'testing' ,
558
+ name : 'Testing' ,
559
+ summary : 'Utilities for testing common components.' ,
560
+ items : [
561
+ {
562
+ id : 'testing' ,
563
+ name : 'Testing' ,
564
+ summary : 'Utilities for testing common components.' ,
565
+ examples : [ ] ,
566
+ additionalApiDocs : [
567
+ {
568
+ name : 'Testbed' ,
569
+ path : 'cdk-testing-testbed.html'
570
+ } ,
571
+ {
572
+ name : 'Protractor' ,
573
+ path : 'cdk-testing-protractor.html'
574
+ }
575
+ ] ,
576
+ }
577
+ ]
578
+ }
555
579
// TODO(jelbourn): re-add utilities and a11y as top-level categories once we can generate
556
580
// their API docs with dgeni. Currently our setup doesn't generate API docs for constants
557
581
// and standalone functions (much of the utilities) and we have no way of generating API
Original file line number Diff line number Diff line change @@ -51,6 +51,11 @@ const GUIDES = [
51
51
id : 'creating-a-custom-stepper-using-the-cdk-stepper' ,
52
52
name : 'Creating a custom stepper using the CdkStepper' ,
53
53
document : '/docs-content/guides/creating-a-custom-stepper-using-the-cdk-stepper.html'
54
+ } ,
55
+ {
56
+ id : 'using-component-harnesses' ,
57
+ name : `Using Angular Material's component harnesses in your tests` ,
58
+ document : '/docs-content/guides/using-component-harnesses.html'
54
59
}
55
60
] ;
56
61
You can’t perform that action at this time.
0 commit comments