mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
33 lines
796 B
JavaScript
33 lines
796 B
JavaScript
/* 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,
|
|
});
|
|
});
|
|
});
|
|
});
|