@@ -85,7 +85,7 @@ describe('PoButtonComponent: ', () => {
85
85
expectPropertiesValues ( component , 'loading' , booleanFalseValues , false ) ;
86
86
} ) ;
87
87
88
- it ( 'p-label: should add span with an label if `p-label` is defined' , ( ) => {
88
+ it ( 'p-label: should add span with a label if `p-label` is defined' , ( ) => {
89
89
component . label = 'Po Button' ;
90
90
fixture . detectChanges ( ) ;
91
91
@@ -98,6 +98,13 @@ describe('PoButtonComponent: ', () => {
98
98
99
99
expect ( nativeElement . querySelector ( 'i.po-button-label' ) ) . toBeFalsy ( ) ;
100
100
} ) ;
101
+
102
+ it ( 'p-hide-label: should´t add span with a label if `p-hide-label` is defined' , ( ) => {
103
+ component . hideLabel = true ;
104
+ fixture . detectChanges ( ) ;
105
+
106
+ expect ( nativeElement . querySelector ( 'span.po-button-label' ) ) . toBeFalsy ( ) ;
107
+ } ) ;
101
108
} ) ;
102
109
103
110
describe ( 'Methods:' , ( ) => {
@@ -129,6 +136,29 @@ describe('PoButtonComponent: ', () => {
129
136
130
137
expect ( component . buttonElement . nativeElement . focus ) . not . toHaveBeenCalled ( ) ;
131
138
} ) ;
139
+
140
+ it ( 'canShowLabel: should call canShowLabel and return true if `label` contains value and `hideLabel` is false' , ( ) => {
141
+ spyOn ( component , 'canShowLabel' ) . and . callThrough ( ) ;
142
+
143
+ component . hideLabel = false ;
144
+ component . label = 'PO Button' ;
145
+
146
+ const result = component . canShowLabel ( ) ;
147
+
148
+ expect ( component . canShowLabel ) . toHaveBeenCalled ( ) ;
149
+ expect ( result ) . toBe ( true ) ;
150
+ } ) ;
151
+
152
+ it ( 'canShowLabel: should call canShowLabel and return false if `hideLabel` is true' , ( ) => {
153
+ spyOn ( component , 'canShowLabel' ) . and . callThrough ( ) ;
154
+
155
+ component . hideLabel = true ;
156
+
157
+ const result = component . canShowLabel ( ) ;
158
+
159
+ expect ( component . canShowLabel ) . toHaveBeenCalled ( ) ;
160
+ expect ( result ) . toBe ( false ) ;
161
+ } ) ;
132
162
} ) ;
133
163
134
164
describe ( 'Templates: ' , ( ) => {
0 commit comments