File size: 1,017 Bytes
1e92f2d |
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 |
import React from 'react';
import { render } from 'react-testing-library';
import renderer from 'react-test-renderer';
import 'jest-styled-components';
import IssueLink from '../IssueLink';
describe('<IssueLink />', () => {
it('should match the snapshot', () => {
const renderedComponent = renderer.create(<IssueLink />).toJSON();
expect(renderedComponent).toMatchSnapshot();
});
it('should have a className attribute', () => {
const { container } = render(<IssueLink />);
expect(container.firstChild.hasAttribute('class')).toBe(true);
});
it('should adopt a valid attribute', () => {
const id = 'test';
const { container } = render(<IssueLink id={id} />);
expect(container.firstChild.hasAttribute('id')).toBe(true);
expect(container.firstChild.id).toEqual(id);
});
it('should not adopt an invalid attribute', () => {
const { container } = render(<IssueLink attribute="test" />);
expect(container.firstChild.hasAttribute('attribute')).toBe(false);
});
});
|