2be71e73dc
- Added a new table mentions for saving user mentions - Added a filter conversation_type in the API - Added a view to see the mentions
10 lines
303 B
JavaScript
10 lines
303 B
JavaScript
import { shallowMount } from '@vue/test-utils';
|
|
import SidemenuIcon from '../SidemenuIcon';
|
|
|
|
describe('SidemenuIcon', () => {
|
|
test('matches snapshot', () => {
|
|
const wrapper = shallowMount(SidemenuIcon);
|
|
expect(wrapper.vm).toBeTruthy();
|
|
expect(wrapper.element).toMatchSnapshot();
|
|
});
|
|
});
|