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.
29 lines
681 B
29 lines
681 B
// 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,
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|