It has more layout page linting and I have removed (really re-removed) the reduntant router parms.
22 lines
636 B
JavaScript
22 lines
636 B
JavaScript
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
|
import { shallowMount } from '@vue/test-utils';
|
|
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
|
|
|
/** @ignore */
|
|
function setupMocks({
|
|
mountOptionsMockData = {}
|
|
}) {
|
|
const mountOptions = getMountOptions(mountOptionsMockData);
|
|
const wrapper = shallowMount(siteHeader, mountOptions);
|
|
|
|
return wrapper;
|
|
}
|
|
|
|
describe('site-header', () => {
|
|
test('renders the logo image', () => {
|
|
const wrapper = setupMocks({ mountOptionsMockData: {} });
|
|
|
|
expect(wrapper.find('img')).toBeTruthy();
|
|
wrapper.unmount();
|
|
});
|
|
});
|