mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import ModalContent from './modal-content.component';
|
|
|
|
describe('ModalContent Component', () => {
|
|
it('should render a title', () => {
|
|
const wrapper = shallow(<ModalContent title="Modal Title" />);
|
|
|
|
expect(wrapper.find('.modal-content__title')).toHaveLength(1);
|
|
expect(wrapper.find('.modal-content__title').text()).toStrictEqual(
|
|
'Modal Title',
|
|
);
|
|
expect(wrapper.find('.modal-content__description')).toHaveLength(0);
|
|
});
|
|
|
|
it('should render a description', () => {
|
|
const wrapper = shallow(<ModalContent description="Modal Description" />);
|
|
|
|
expect(wrapper.find('.modal-content__title')).toHaveLength(0);
|
|
expect(wrapper.find('.modal-content__description')).toHaveLength(1);
|
|
expect(wrapper.find('.modal-content__description').text()).toStrictEqual(
|
|
'Modal Description',
|
|
);
|
|
});
|
|
|
|
it('should render both a title and a description', () => {
|
|
const wrapper = shallow(
|
|
<ModalContent title="Modal Title" description="Modal Description" />,
|
|
);
|
|
|
|
expect(wrapper.find('.modal-content__title')).toHaveLength(1);
|
|
expect(wrapper.find('.modal-content__title').text()).toStrictEqual(
|
|
'Modal Title',
|
|
);
|
|
expect(wrapper.find('.modal-content__description')).toHaveLength(1);
|
|
expect(wrapper.find('.modal-content__description').text()).toStrictEqual(
|
|
'Modal Description',
|
|
);
|
|
});
|
|
});
|