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.
47 lines
1.4 KiB
47 lines
1.4 KiB
6 years ago
|
import assert from 'assert'
|
||
|
import { mapStateToProps, mapDispatchToProps } from '../advanced-tab.container'
|
||
|
|
||
|
const defaultState = {
|
||
|
appState: {
|
||
|
warning: null,
|
||
|
},
|
||
|
metamask: {
|
||
|
featureFlags: {
|
||
|
sendHexData: false,
|
||
|
advancedInlineGas: false,
|
||
|
},
|
||
|
preferences: {
|
||
|
autoLogoutTimeLimit: 0,
|
||
|
showFiatInTestnets: false,
|
||
|
useNativeCurrencyAsPrimaryCurrency: true,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
describe('AdvancedTab Container', () => {
|
||
|
it('should map state to props correctly', () => {
|
||
|
const props = mapStateToProps(defaultState)
|
||
|
const expected = {
|
||
|
warning: null,
|
||
|
sendHexData: false,
|
||
|
advancedInlineGas: false,
|
||
|
showFiatInTestnets: false,
|
||
|
autoLogoutTimeLimit: 0,
|
||
|
}
|
||
|
|
||
|
assert.deepEqual(props, expected)
|
||
|
})
|
||
|
|
||
|
it('should map dispatch to props correctly', () => {
|
||
|
const props = mapDispatchToProps(() => 'mockDispatch')
|
||
|
|
||
|
assert.ok(typeof props.setHexDataFeatureFlag === 'function')
|
||
|
assert.ok(typeof props.setRpcTarget === 'function')
|
||
|
assert.ok(typeof props.displayWarning === 'function')
|
||
|
assert.ok(typeof props.showResetAccountConfirmationModal === 'function')
|
||
|
assert.ok(typeof props.setAdvancedInlineGasFeatureFlag === 'function')
|
||
|
assert.ok(typeof props.setShowFiatConversionOnTestnetsPreference === 'function')
|
||
|
assert.ok(typeof props.setAutoLogoutTimeLimit === 'function')
|
||
|
})
|
||
|
})
|