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