@@ -55,7 +55,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
55
55
expect ( wrapper . find ( '.counter' ) . text ( ) ) . to . equal ( '4' )
56
56
} )
57
57
58
- it ( 'should trigger a change event when called on a checkbox' , ( ) => {
58
+ it ( 'triggers a change event when called on a checkbox' , ( ) => {
59
59
const listener = sinon . spy ( )
60
60
61
61
mountingMethod ( {
@@ -74,7 +74,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
74
74
expect ( listener ) . to . have . been . called
75
75
} )
76
76
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' , ( ) => {
78
78
const listener = sinon . spy ( )
79
79
80
80
mountingMethod ( {
@@ -126,7 +126,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
126
126
expect ( wrapper . find ( '.counter' ) . text ( ) ) . to . equal ( '4' )
127
127
} )
128
128
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' , ( ) => {
130
130
const listener = sinon . spy ( )
131
131
132
132
mountingMethod ( {
@@ -143,7 +143,7 @@ describeWithShallowAndMount('setChecked', mountingMethod => {
143
143
expect ( listener ) . to . have . been . called
144
144
} )
145
145
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' , ( ) => {
147
147
const listener = sinon . spy ( )
148
148
149
149
mountingMethod ( {
0 commit comments