2019-12-11 15:27:06 +00:00
|
|
|
import { mount } from '@vue/test-utils';
|
|
|
|
import Spinner from '../Spinner';
|
|
|
|
|
|
|
|
describe('Spinner', () => {
|
|
|
|
test('matches snapshot', () => {
|
|
|
|
const wrapper = mount(Spinner);
|
2021-05-13 09:33:04 +00:00
|
|
|
expect(wrapper.vm).toBeTruthy();
|
2019-12-11 15:27:06 +00:00
|
|
|
expect(wrapper.element).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|