@@ -55,7 +55,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
5555 expect ( wrapper . find ( '.counter' ) . text ( ) ) . to . equal ( '4' )
5656 } )
5757
58- it ( 'should trigger a change event when called on a checkbox' , ( ) => {
58+ it ( 'triggers a change event when called on a checkbox' , ( ) => {
5959 const listener = sinon . spy ( )
6060
6161 mountingMethod ( {
@@ -74,7 +74,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
7474 expect ( listener ) . to . have . been . called
7575 } )
7676
77- it ( 'should not trigger a change event if the checkbox is already checked' , ( ) => {
77+ it ( 'does not trigger a change event if the checkbox is already checked' , ( ) => {
7878 const listener = sinon . spy ( )
7979
8080 mountingMethod ( {
@@ -126,7 +126,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
126126 expect ( wrapper . find ( '.counter' ) . text ( ) ) . to . equal ( '4' )
127127 } )
128128
129- it ( 'should trigger a change event when called on a radio button' , ( ) => {
129+ it ( 'triggers a change event when called on a radio button' , ( ) => {
130130 const listener = sinon . spy ( )
131131
132132 mountingMethod ( {
@@ -143,7 +143,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
143143 expect ( listener ) . to . have . been . called
144144 } )
145145
146- it ( 'should not trigger a change event if the radio button is already checked' , ( ) => {
146+ it ( 'does not trigger a change event if the radio button is already checked' , ( ) => {
147147 const listener = sinon . spy ( )
148148
149149 mountingMethod ( {
0 commit comments