forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCardText.spec.js
More file actions
27 lines (21 loc) · 828 Bytes
/
Copy pathCardText.spec.js
File metadata and controls
27 lines (21 loc) · 828 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 { CardText } from '../';
describe('CardText', () => {
it('should render with "card-text" class', () => {
const wrapper = shallow(<CardText>Yo!</CardText>);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('card-text')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(<CardText className="other">Yo!</CardText>);
expect(wrapper.hasClass('other')).toBe(true);
expect(wrapper.hasClass('card-text')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(<CardText tag="span">Yo!</CardText>);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('card-text')).toBe(true);
expect(wrapper.find('span').length).toBe(1);
});
});