forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.spec.js
More file actions
35 lines (25 loc) · 887 Bytes
/
Copy pathForm.spec.js
File metadata and controls
35 lines (25 loc) · 887 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
28
29
30
31
32
33
34
35
import React from 'react';
import { shallow } from 'enzyme';
import { Form } from '../';
describe('Form', () => {
it('should render with "form" tag', () => {
const wrapper = shallow(<Form>Yo!</Form>);
expect(wrapper.type()).toBe('form');
});
it('should render children', () => {
const wrapper = shallow(<Form>Yo!</Form>);
expect(wrapper.text()).toBe('Yo!');
});
it('should render with "form-inline" class', () => {
const wrapper = shallow(<Form inline>Yo!</Form>);
expect(wrapper.hasClass('form-inline')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(<Form className="other">Yo!</Form>);
expect(wrapper.hasClass('other')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(<Form tag="main">Yo!</Form>);
expect(wrapper.type()).toBe('main');
});
});