@@ -10,37 +10,37 @@ describe('CounterService', () => {
1010 service = TestBed . inject ( CounterService ) ;
1111 } ) ;
1212
13- it ( 'increase' , ( ) => {
13+ it ( 'should increase' , ( ) => {
1414 service . increase ( ) ;
1515 expect ( service . count ) . toBe ( 1 ) ;
1616 } ) ;
1717
18- it ( 'increase by given number' , ( ) => {
18+ it ( 'should increase by given number' , ( ) => {
1919 service . increase ( 5 ) ;
2020 expect ( service . count ) . toBe ( 5 ) ;
2121 } ) ;
2222
23- it ( 'decrease' , ( ) => {
23+ it ( 'should decrease' , ( ) => {
2424 service . decrease ( ) ;
2525 expect ( service . count ) . toBe ( - 1 ) ;
2626 } ) ;
2727
28- it ( 'decrease by given number' , ( ) => {
28+ it ( 'should decrease by given number' , ( ) => {
2929 service . decrease ( 6 ) ;
3030 expect ( service . count ) . toBe ( - 6 ) ;
3131 } ) ;
3232
33- it ( 'reset counter' , ( ) => {
33+ it ( 'should reset counter' , ( ) => {
3434 service . count = 30 ;
3535 service . reset ( ) ;
3636 expect ( service . count ) . toBe ( 0 ) ;
3737 } ) ;
3838
39- it ( 'returns count' , ( ) => {
39+ it ( 'should returns count' , ( ) => {
4040 expect ( service . count ) . toBe ( 0 ) ;
4141 } ) ;
4242
43- it ( 'sets count' , ( ) => {
43+ it ( 'should sets count' , ( ) => {
4444 service . count = 100 ;
4545 expect ( service . count ) . toBe ( 100 ) ;
4646 } ) ;
0 commit comments