Chatwoot/app/javascript/shared/components/specs/Spinner.spec.js

11 lines
282 B
JavaScript
Raw Normal View History

import { mount } from '@vue/test-utils';
import Spinner from '../Spinner';
describe('Spinner', () => {
test('matches snapshot', () => {
const wrapper = mount(Spinner);
expect(wrapper.isVueInstance()).toBeTruthy();
expect(wrapper.element).toMatchSnapshot();
});
});