Chatwoot/app/javascript/shared/components/specs/Spinner.spec.js
2021-05-13 15:03:04 +05:30

10 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();
});
});