forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainer.spec.js
More file actions
38 lines (28 loc) · 1.11 KB
/
Copy pathContainer.spec.js
File metadata and controls
38 lines (28 loc) · 1.11 KB
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
28
29
30
31
32
33
34
35
36
37
38
import React from 'react';
import { shallow } from 'enzyme';
import { Container } from '../';
describe('Container', () => {
it('should render .container markup', () => {
const wrapper = shallow(<Container />);
expect(wrapper.html()).toBe('<div class="container"></div>');
});
it('should render .container-fluid markup', () => {
const wrapper = shallow(<Container fluid />);
expect(wrapper.html()).toBe('<div class="container-fluid"></div>');
});
it('should render children', () => {
const wrapper = shallow(<Container>Children</Container>);
expect(wrapper.html()).toBe('<div class="container">Children</div>');
});
it('should pass additional classNames', () => {
const wrapper = shallow(<Container className="extra" />);
expect(wrapper.hasClass('extra')).toBe(true);
expect(wrapper.hasClass('container')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(<Container tag="main">Yo!</Container>);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('container')).toBe(true);
expect(wrapper.type()).toBe('main');
});
});