Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 8987a55

Browse files
committed
fix(badge): updated badge tests
1 parent 1186c9b commit 8987a55

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/components/Badge/badge.test.js

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
import { shallowMount } from '@vue/test-utils'
2-
import Badge from './index.vue'
2+
import Badge from './'
3+
import ThemeProvider from '../ThemeProvider'
4+
import theme from '../../lib/theme'
35

46
describe('===== Badge Component =====', () => {
5-
let badge
67
describe('Instance TEsts', () => {
78
it('should be a Vue instance', () => {
8-
badge = shallowMount(Badge)
9-
expect(badge.isVueInstance()).toBeTruthy()
9+
const wrapper = shallowMount(ThemeProvider, {
10+
propsData: {
11+
theme,
12+
colorMode: 'light'
13+
},
14+
slots: {
15+
default: [Badge]
16+
}
17+
})
18+
expect(wrapper.isVueInstance()).toBeTruthy()
19+
expect(wrapper.find(Badge).vm.$theme()).toBe(theme)
20+
expect(wrapper.find(Badge).vm.$colorMode).toBe('light')
1021
})
1122
})
1223
})

0 commit comments

Comments
 (0)