Skip to content
On this page

@obewds/vue-tw-inline Tests

Testing Status

CURRENT STATUS

100% Coverage
100% Passing

Vitest Tests

js
// ./tests/VueTwInline.test.js

import { mount } from '@vue/test-utils'
import VueTwInline from '../src/components/VueTwInline.vue'



test('VueTwInline.vue component mounts successfully', async () => {

    expect(VueTwInline).toBeTruthy()

})



test('VueTwInline.vue component text prop accepts a string value', async () => {

    const testString = 'Test String Value'

    const wrapper = mount(VueTwInline, {
        props: {
            tag: 'span',
            text: testString,
        },
    })

    expect(wrapper.text()).toContain(testString)
    
})



test('VueTwInline.vue component default slot accepts an element node with a child text node', async () => {

    const testStrLiteral = `<span>Test String Value</span>`

    const wrapper = mount(VueTwInline, {
        props: {
            tag: 'span',
        },
        slots: {
            default: testStrLiteral
        },
    })

    expect(wrapper.html()).toContain(testStrLiteral)
    
})



test('VueTwInline.vue component does not allow a non-block element tag prop value', async () => {

    const validator = VueTwInline.props.tag.validator

    expect(validator('div')).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