You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tag:
Branch:
Tree:
e906bd8d0e
develop
feature/default_network_editable
v10.22.3
${ noResults }
90 lines
2.7 KiB
90 lines
2.7 KiB
import React from 'react';
|
|||
import { shallow } from 'enzyme';
|
|||
import sinon from 'sinon';
|
|||
import ConfirmDetailRow from './confirm-detail-row.component';
|
|||
|
|
||
const propsMethodSpies = {
|
|||
onHeaderClick: sinon.spy(),
|
|||
};
|
|||
|
|
||
describe('Confirm Detail Row Component', () => {
|
|||
describe('render', () => {
|
|||
let wrapper;
|
|||
|
|
||
beforeEach(() => {
|
|||
wrapper = shallow(
|
|||
<ConfirmDetailRow
|
|||
errorType="mockErrorType"
|
|||
label="mockLabel"
|
|||
showError={false}
|
|||
primaryText="mockFiatText"
|
|||
secondaryText="mockEthText"
|
|||
primaryValueTextColor="mockColor"
|
|||
onHeaderClick={propsMethodSpies.onHeaderClick}
|
|||
headerText="mockHeaderText"
|
|||
headerTextClassName="mockHeaderClass"
|
|||
/>,
|
|||
);
|
|||
});
|
|||
|
|
||
it('should render a div with a confirm-detail-row class', () => {
|
|||
expect(wrapper.find('div.confirm-detail-row')).toHaveLength(1);
|
|||
});
|
|||
|
|
||
it('should render the label as a child of the confirm-detail-row__label', () => {
|
|||
expect(
|
|||
|
wrapper
|
||
.find('.confirm-detail-row > .confirm-detail-row__label')
|
|||
.childAt(0)
|
|||
.text(),
|
|||
).toStrictEqual('mockLabel');
|
|||
});
|
|||
|
|
||
it('should render the headerText as a child of the confirm-detail-row__header-text', () => {
|
|||
expect(
|
|||
|
wrapper
|
||
.find(
|
|||
'.confirm-detail-row__details > .confirm-detail-row__header-text',
|
|||
)
|
|||
.childAt(0)
|
|||
.text(),
|
|||
).toStrictEqual('mockHeaderText');
|
|||
});
|
|||
|
|
||
it('should render the primaryText as a child of the confirm-detail-row__primary', () => {
|
|||
expect(
|
|||
|
wrapper
|
||
.find('.confirm-detail-row__details > .confirm-detail-row__primary')
|
|||
.childAt(0)
|
|||
.text(),
|
|||
).toStrictEqual('mockFiatText');
|
|||
});
|
|||
|
|
||
it('should render the ethText as a child of the confirm-detail-row__secondary', () => {
|
|||
expect(
|
|||
|
wrapper
|
||
.find('.confirm-detail-row__details > .confirm-detail-row__secondary')
|
|||
.childAt(0)
|
|||
.text(),
|
|||
).toStrictEqual('mockEthText');
|
|||
});
|
|||
|
|
||
it('should set the fiatTextColor on confirm-detail-row__primary', () => {
|
|||
expect(
|
|||
|
wrapper.find('.confirm-detail-row__primary').props().style.color,
|
||
).toStrictEqual('mockColor');
|
|||
});
|
|||
|
|
||
it('should assure the confirm-detail-row__header-text classname is correct', () => {
|
|||
expect(
|
|||
|
wrapper.find('.confirm-detail-row__header-text').props().className,
|
||
).toStrictEqual('confirm-detail-row__header-text mockHeaderClass');
|
|||
});
|
|||
|
|
||
it('should call onHeaderClick when headerText div gets clicked', () => {
|
|||
wrapper.find('.confirm-detail-row__header-text').props().onClick();
|
|||
expect(propsMethodSpies.onHeaderClick.calledOnce).toStrictEqual(true);
|
|||
});
|
|||
});
|
|||
});
|