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.
32 lines
796 B
32 lines
796 B
/* eslint-disable import/unambiguous */
|
|
let mapStateToProps;
|
|
|
|
jest.mock('react-redux', () => ({
|
|
connect: (ms) => {
|
|
mapStateToProps = ms;
|
|
return () => ({});
|
|
},
|
|
}));
|
|
|
|
require('./user-preferenced-currency-input.container.js');
|
|
|
|
describe('UserPreferencedCurrencyInput container', () => {
|
|
describe('mapStateToProps()', () => {
|
|
it('should return the correct props', () => {
|
|
const mockState = {
|
|
metamask: {
|
|
preferences: {
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
},
|
|
},
|
|
appState: {
|
|
sendInputCurrencySwitched: false,
|
|
},
|
|
};
|
|
expect(mapStateToProps(mockState)).toStrictEqual({
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
sendInputCurrencySwitched: false,
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|