UNPKG

@mozaic-ds/vue

Version:

Mozaic-Vue is the Vue.js implementation of ADEO Design system

17 lines (13 loc) 381 B
import { describe, it, expect } from 'vitest'; import { mount } from '@vue/test-utils'; import MStatusBadge from './MStatusBadge.vue'; describe('MStatusBadge component', () => { it('renders properly', () => { const wrapper = mount(MStatusBadge, { props: { label: 'Badge Label', }, }); expect(wrapper.text()).toContain('Badge Label'); }); });