Skip to content
Snippets Groups Projects
Commit ad3b895a authored by David Pisek's avatar David Pisek
Browse files

Boostrap specs for list type [skip ci]

parent c67a0efa
No related branches found
No related tags found
No related merge requests found
import { shallowMount } from '@vue/test-utils';
import List from 'ee/vulnerabilities/components/generic_report/types/list.vue';
describe('EE - GenericReport - Types - List', () => {
let wrapper;
const createWrapper = () => {
return shallowMount(List, {
propsData: {
items: [],
},
});
};
beforeEach(() => {
wrapper = createWrapper();
});
it('renders', () => {
expect(wrapper.findComponent(List).exists()).toBe(true);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment