mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 02:50:02 -03:30
* convert Org list to use PaginatedDataList * add ToolbarAddButton, ToolbarDeleteButton * pass full org into OrganizationListItem
26 lines
770 B
JavaScript
26 lines
770 B
JavaScript
import React from 'react';
|
|
import { mountWithContexts } from '../../enzymeHelpers';
|
|
import { ToolbarAddButton } from '../../../src/components/PaginatedDataList';
|
|
|
|
describe('<ToolbarAddButton />', () => {
|
|
test('should render button', () => {
|
|
const onClick = jest.fn();
|
|
const wrapper = mountWithContexts(
|
|
<ToolbarAddButton onClick={onClick} />
|
|
);
|
|
const button = wrapper.find('button');
|
|
expect(button).toHaveLength(1);
|
|
button.simulate('click');
|
|
expect(onClick).toHaveBeenCalled();
|
|
});
|
|
|
|
test('should render link', () => {
|
|
const wrapper = mountWithContexts(
|
|
<ToolbarAddButton linkTo="/foo" />
|
|
);
|
|
const link = wrapper.find('Link');
|
|
expect(link).toHaveLength(1);
|
|
expect(link.prop('to')).toBe('/foo');
|
|
});
|
|
});
|