File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ describe("Number", () => {
108108 buttonUp . click ( ) ;
109109 fixture . detectChanges ( ) ;
110110 expect ( component . value ) . toEqual ( 2 ) ;
111- } ) ;
111+ } ) ;
112112
113113 it ( "should increment and set value to max if value + step exceeds max" , ( ) => {
114114 fixture . detectChanges ( ) ;
@@ -129,8 +129,8 @@ describe("Number", () => {
129129 component . min = 5 ;
130130 buttonUp . click ( ) ;
131131 fixture . detectChanges ( ) ;
132-
133- expect ( component . value ) . toBe ( 5 ) ;
132+
133+ expect ( component . value ) . toBe ( 5 ) ;
134134 } ) ;
135135
136136 it ( "should not increment value if max is reached" , ( ) => {
@@ -160,8 +160,8 @@ describe("Number", () => {
160160 component . max = 15 ;
161161 buttonUp . click ( ) ;
162162 fixture . detectChanges ( ) ;
163-
164- expect ( component . value ) . toBe ( 15 ) ;
163+
164+ expect ( component . value ) . toBe ( 15 ) ;
165165 } ) ;
166166
167167 it ( "should decrement and set value to min if value - step is less than min" , ( ) => {
@@ -173,7 +173,7 @@ describe("Number", () => {
173173 buttonUp . click ( ) ;
174174 fixture . detectChanges ( ) ;
175175 expect ( component . value ) . toEqual ( 5 ) ;
176- } ) ;
176+ } ) ;
177177
178178 it ( "should not decrement value min is reached" , ( ) => {
179179 fixture . detectChanges ( ) ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export default {
3838 control : "radio"
3939 } ,
4040 // Actions
41- change : { action : ' changed' }
41+ change : { action : " changed" }
4242 } ,
4343 component : NumberComponent
4444} as Meta ;
You can’t perform that action at this time.
0 commit comments