mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
11 lines
269 B
JavaScript
11 lines
269 B
JavaScript
import { mount } from '@vue/test-utils';
|
|
import Spinner from '../Spinner';
|
|
|
|
describe('Spinner', () => {
|
|
test('matches snapshot', () => {
|
|
const wrapper = mount(Spinner);
|
|
expect(wrapper.vm).toBeTruthy();
|
|
expect(wrapper.element).toMatchSnapshot();
|
|
});
|
|
});
|