Appearance
@obewds/vue-el Tests
Testing Status
CURRENT STATUS
100% Coverage
100% Passing
Vitest Tests
js
// ./tests/VueEl.test.js
import { mount } from '@vue/test-utils'
import VueEl from '../src/components/VueEl.vue'
test('VueEl.vue component mounts successfully', async () => {
expect(VueEl).toBeTruthy()
})
test('VueEl.vue component text prop accepts a string value', async () => {
const testString = 'Test String Value'
const wrapper = mount(VueEl, {
props: {
tag: 'span',
text: testString
},
})
expect(wrapper.text()).toContain(testString)
})
test('VueEl.vue component default slot accepts an element node with a child text node', async () => {
const testStrLiteral = `<div>Test String Value</div>`
const wrapper = mount(VueEl, {
props: {
tag: 'div',
},
slots: {
default: testStrLiteral
},
})
expect(wrapper.html()).toContain(testStrLiteral)
})
test('VueEl.vue component does not accept an empty element like a br tag', async () => {
const tag = 'br'
const wrapper = mount(VueEl, {
props: {
tag: tag,
},
})
try {
wrapper.vm.emptyElementOrUnsupportedError(tag)
} catch (error) {
expect(error).toContain('Empty Element')
}
})
test('VueEl.vue component does not accept an unsupported element like a body tag', async () => {
const tag = 'body'
const wrapper = mount(VueEl, {
props: {
tag: tag,
},
})
try {
wrapper.vm.emptyElementOrUnsupportedError(tag)
} catch (error) {
expect(error).toContain('not supported')
}
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88