@@ -2,15 +2,15 @@ import ComponentWithInput from '~resources/components/component-with-input.vue'
22import { describeWithShallowAndMount } from '~resources/utils'
33
44describeWithShallowAndMount ( 'setChecked' , ( mountingMethod ) => {
5- it . skip ( 'sets element checked true with no option passed' , ( ) => {
5+ it ( 'sets element checked true with no option passed' , ( ) => {
66 const wrapper = mountingMethod ( ComponentWithInput )
77 const input = wrapper . find ( 'input[type="checkbox"]' )
88 input . setChecked ( )
99
1010 expect ( input . element . checked ) . to . equal ( true )
1111 } )
1212
13- it . skip ( 'sets element checked equal to param passed' , ( ) => {
13+ it ( 'sets element checked equal to param passed' , ( ) => {
1414 const wrapper = mountingMethod ( ComponentWithInput )
1515 const input = wrapper . find ( 'input[type="checkbox"]' )
1616
@@ -21,7 +21,7 @@ describeWithShallowAndMount('setChecked', (mountingMethod) => {
2121 expect ( input . element . checked ) . to . equal ( false )
2222 } )
2323
24- it . skip ( 'updates dom with checkbox v-model' , ( ) => {
24+ it ( 'updates dom with checkbox v-model' , ( ) => {
2525 const wrapper = mountingMethod ( ComponentWithInput )
2626 const input = wrapper . find ( 'input[type="checkbox"]' )
2727
@@ -32,7 +32,7 @@ describeWithShallowAndMount('setChecked', (mountingMethod) => {
3232 expect ( wrapper . text ( ) ) . to . not . contain ( 'checkbox checked' )
3333 } )
3434
35- it . skip ( 'changes state the right amount of times with checkbox v-model' , ( ) => {
35+ it ( 'changes state the right amount of times with checkbox v-model' , ( ) => {
3636 const wrapper = mountingMethod ( ComponentWithInput )
3737 const input = wrapper . find ( 'input[type="checkbox"]' )
3838
0 commit comments