@@ -2,15 +2,15 @@ import ComponentWithInput from '~resources/components/component-with-input.vue'
2
2
import { describeWithShallowAndMount } from '~resources/utils'
3
3
4
4
describeWithShallowAndMount('setChecked', (mountingMethod) => {
5
- it('sets element checked true with no option passed', () => {
5
+ it.skip ('sets element checked true with no option passed', () => {
6
6
const wrapper = mountingMethod(ComponentWithInput)
7
7
const input = wrapper.find('input[type="checkbox"]')
8
8
input.setChecked()
9
9
10
10
expect(input.element.checked).to.equal(true)
11
11
})
12
12
13
- it('sets element checked equal to param passed', () => {
13
+ it.skip ('sets element checked equal to param passed', () => {
14
14
const wrapper = mountingMethod(ComponentWithInput)
15
15
const input = wrapper.find('input[type="checkbox"]')
16
16
@@ -21,7 +21,7 @@ describeWithShallowAndMount('setChecked', (mountingMethod) => {
21
21
expect(input.element.checked).to.equal(false)
22
22
})
23
23
24
- it('updates dom with checkbox v-model', () => {
24
+ it.skip ('updates dom with checkbox v-model', () => {
25
25
const wrapper = mountingMethod(ComponentWithInput)
26
26
const input = wrapper.find('input[type="checkbox"]')
27
27
@@ -32,7 +32,7 @@ describeWithShallowAndMount('setChecked', (mountingMethod) => {
32
32
expect(wrapper.text()).to.not.contain('checkbox checked')
33
33
})
34
34
35
- it('changes state the right amount of times with checkbox v-model', () => {
35
+ it.skip ('changes state the right amount of times with checkbox v-model', () => {
36
36
const wrapper = mountingMethod(ComponentWithInput)
37
37
const input = wrapper.find('input[type="checkbox"]')
38
38
0 commit comments