mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
30 lines
681 B
JavaScript
30 lines
681 B
JavaScript
// eslint-disable-next-line import/unambiguous
|
|
let mapStateToProps;
|
|
|
|
jest.mock('react-redux', () => ({
|
|
connect: (ms) => {
|
|
mapStateToProps = ms;
|
|
return () => ({});
|
|
},
|
|
}));
|
|
|
|
require('./user-preferenced-token-input.container.js');
|
|
|
|
describe('UserPreferencedTokenInput container', () => {
|
|
describe('mapStateToProps()', () => {
|
|
it('should return the correct props', () => {
|
|
const mockState = {
|
|
metamask: {
|
|
preferences: {
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
expect(mapStateToProps(mockState)).toStrictEqual({
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
});
|
|
});
|
|
});
|
|
});
|