verdaccio-ui/src/components/NoItems/Noitems.test.tsx
Priscila Oliveira ae73772a37 feat(eslint-config): add order rule in import
* refactor: added eslint-plugin-import

* refactor: disable some rules for muiComponents

* fix: fixed import
2019-10-07 22:19:18 +02:00

26 lines
611 B
TypeScript

import React from 'react';
import { shallow, mount } from 'enzyme';
import NoItems from './NoItems';
console.error = jest.fn();
describe('<NoItem /> component', () => {
const props = {
text: 'test',
};
test('should load the component in default state', () => {
const wrapper = shallow(<NoItems text={props.text} />);
expect(wrapper.html()).toMatchSnapshot();
});
test('should set html from props', () => {
const props = {
text: 'This is a test string',
};
const wrapper = mount(<NoItems text={props.text} />);
expect(wrapper.html()).toMatchSnapshot();
});
});