2021-12-09 05:50:14 +00:00
|
|
|
import { shallowMount } from '@vue/test-utils';
|
2019-12-12 07:23:15 +00:00
|
|
|
import SidemenuIcon from '../SidemenuIcon';
|
|
|
|
|
|
|
|
describe('SidemenuIcon', () => {
|
|
|
|
test('matches snapshot', () => {
|
2021-12-09 05:50:14 +00:00
|
|
|
const wrapper = shallowMount(SidemenuIcon);
|
2021-05-13 09:33:04 +00:00
|
|
|
expect(wrapper.vm).toBeTruthy();
|
2019-12-12 07:23:15 +00:00
|
|
|
expect(wrapper.element).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|