Appearance
@obewds/vue-tw-block Tests
Testing Status
CURRENT STATUS
100% Coverage
100% Passing
Vitest Tests
js
// ./tests/VueTwBlock.test.js
import { mount } from '@vue/test-utils'
import VueTwBlock from '../src/components/VueTwBlock.vue'
test('VueTwBlock.vue component mounts successfully', async () => {
expect(VueTwBlock).toBeTruthy()
})
test('VueTwBlock.vue component text prop accepts a string value', async () => {
const testString = 'Test String Value'
const wrapper = mount(VueTwBlock, {
props: {
tag: 'div',
text: testString,
},
})
expect(wrapper.text()).toContain(testString)
})
test('VueTwBlock.vue component default slot accepts an element node with a child text node', async () => {
const testStrLiteral = `<div>Test String Value</div>`
const wrapper = mount(VueTwBlock, {
props: {
tag: 'div',
},
slots: {
default: testStrLiteral
},
})
expect(wrapper.html()).toContain(testStrLiteral)
})
test('VueTwBlock.vue component does not allow a non-block element tag prop value', async () => {
const validator = VueTwBlock.props.tag.validator
expect(validator('span')).toBe(false)
})
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
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