37 lines
808 B
JavaScript
37 lines
808 B
JavaScript
import { shallowMount } from '@vue/test-utils';
|
|
|
|
import AdminUsersApp from '~/admin/users/components/app.vue';
|
|
import AdminUsersTable from '~/admin/users/components/users_table.vue';
|
|
import { users, paths } from '../mock_data';
|
|
|
|
describe('AdminUsersApp component', () => {
|
|
let wrapper;
|
|
|
|
const initComponent = (props = {}) => {
|
|
wrapper = shallowMount(AdminUsersApp, {
|
|
propsData: {
|
|
users,
|
|
paths,
|
|
...props,
|
|
},
|
|
});
|
|
};
|
|
|
|
afterEach(() => {
|
|
wrapper.destroy();
|
|
wrapper = null;
|
|
});
|
|
|
|
describe('when initialized', () => {
|
|
beforeEach(() => {
|
|
initComponent();
|
|
});
|
|
|
|
it('renders the admin users table with props', () => {
|
|
expect(wrapper.find(AdminUsersTable).props()).toEqual({
|
|
users,
|
|
paths,
|
|
});
|
|
});
|
|
});
|
|
});
|