forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModalFooter.spec.js
More file actions
27 lines (21 loc) · 856 Bytes
/
Copy pathModalFooter.spec.js
File metadata and controls
27 lines (21 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React from 'react';
import { shallow } from 'enzyme';
import { ModalFooter } from '../';
describe('ModalFooter', () => {
it('should render with "modal-footer" class', () => {
const wrapper = shallow(<ModalFooter>Yo!</ModalFooter>);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('modal-footer')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(<ModalFooter className="other">Yo!</ModalFooter>);
expect(wrapper.hasClass('modal-footer')).toBe(true);
expect(wrapper.hasClass('other')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(<ModalFooter tag="main">Yo!</ModalFooter>);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('modal-footer')).toBe(true);
expect(wrapper.type()).toBe('main');
});
});