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

10 lines
289 B
JavaScript

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