mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
624139a00f
* Remove unused sendWarnings The send warnings state and associated component is no longer used anywhere. * Remove unused subtitleParams The `subtitleParams` SendHeader prop was being ignored. It has been removed, along with associated selectors and tests.
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import assert from 'assert'
|
|
import proxyquire from 'proxyquire'
|
|
|
|
const {
|
|
getTitleKey,
|
|
} = proxyquire('../send-header.selectors', {
|
|
'../send.selectors': {
|
|
getSelectedToken: (mockState) => mockState.t,
|
|
getSendEditingTransactionId: (mockState) => mockState.e,
|
|
getSendTo: (mockState) => mockState.to,
|
|
},
|
|
})
|
|
|
|
describe('send-header selectors', () => {
|
|
|
|
describe('getTitleKey()', () => {
|
|
it('should return the correct key when "to" is empty', () => {
|
|
assert.equal(getTitleKey({ e: 1, t: true, to: '' }), 'addRecipient')
|
|
})
|
|
|
|
it('should return the correct key when getSendEditingTransactionId is truthy', () => {
|
|
assert.equal(getTitleKey({ e: 1, t: true, to: '0x123' }), 'edit')
|
|
})
|
|
|
|
it('should return the correct key when getSendEditingTransactionId is falsy and getSelectedToken is truthy', () => {
|
|
assert.equal(getTitleKey({ e: null, t: 'abc', to: '0x123' }), 'sendTokens')
|
|
})
|
|
|
|
it('should return the correct key when getSendEditingTransactionId is falsy and getSelectedToken is falsy', () => {
|
|
assert.equal(getTitleKey({ e: null, to: '0x123' }), 'sendETH')
|
|
})
|
|
})
|
|
|
|
})
|