Skip to content
On this page

@obewds/vue-tw-el Tests

Testing Status

CURRENT STATUS

100% Coverage
100% Passing

Vitest Tests

js
// ./tests/VueTwEl.test.js


import { mount } from '@vue/test-utils'
import VueTwEl from '../src/components/VueTwEl.vue'
import obewdsTwConfig from '../obewds.tw.config.json'



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

    expect(VueTwEl).toBeTruthy()

})



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

    const testString = 'Test String Value'

    const wrapper = mount(VueTwEl, {
        props: {
            tag: 'div',
            text: testString,
        },
    })

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



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

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

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

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



test('VueTwEl.vue component accepts injects provided "tw" data', async () => {

    const testStr = 'test text'

    const wrapper = mount(VueTwEl, {
        global: {
            provide: {
                'tw': obewdsTwConfig,
            },
        },
        props: {
            tag: 'div',
            text: testStr,
            bgColor: 'primary',
            borderColor: 'primary',
            textColor: 'primary',
        },
    })

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



test('VueTwEl.vue component does not return classes with invalid props provided with "tw" data', async () => {

    const wrapper = mount(VueTwEl, {
        global: {
            provide: {
                'tw': obewdsTwConfig,
            },
        },
        props: {
            tag: 'div',
            bgColor: 'unknown',
            borderColor: 'unknown',
            textColor: 'unknown',
        },
    })

    expect(wrapper.html()).toContain('class=""')
    
})



test('VueTwEl.vue component uses default tw classes if provided global "tw" data is empty', async () => {

    const wrapper = mount(VueTwEl, {
        global: {
            provide: {
                'tw': {},
            },
        },
        props: {
            tag: 'div',
            bgColor: 'primary',
        },
    })

    console.log('wrapper.html():')
    console.log(wrapper.html())

    expect(wrapper.html()).toContain('bg-blue')
    
})
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120