mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
28 lines
684 B
JavaScript
28 lines
684 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import SelectableCard from '../../src/components/AddRole/SelectableCard';
|
|
|
|
describe('<SelectableCard />', () => {
|
|
let wrapper;
|
|
const onClick = jest.fn();
|
|
test('initially renders without crashing when not selected', () => {
|
|
wrapper = shallow(
|
|
<SelectableCard
|
|
onClick={onClick}
|
|
/>
|
|
);
|
|
expect(wrapper.length).toBe(1);
|
|
wrapper.unmount();
|
|
});
|
|
test('initially renders without crashing when selected', () => {
|
|
wrapper = shallow(
|
|
<SelectableCard
|
|
isSelected
|
|
onClick={onClick}
|
|
/>
|
|
);
|
|
expect(wrapper.length).toBe(1);
|
|
wrapper.unmount();
|
|
});
|
|
});
|