mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 20:57:12 +01:00
b3d78ed8a1
Revert accidentally changed constants. Require defaults in ens-input, gas-fee-display and confirm screens.
28 lines
661 B
JavaScript
28 lines
661 B
JavaScript
import assert from 'assert'
|
|
import {
|
|
calcMaxAmount,
|
|
} from '../amount-max-button.utils.js'
|
|
|
|
describe('amount-max-button utils', () => {
|
|
|
|
describe('calcMaxAmount()', () => {
|
|
it('should calculate the correct amount when no selectedToken defined', () => {
|
|
assert.deepEqual(calcMaxAmount({
|
|
balance: 'ffffff',
|
|
gasTotal: 'ff',
|
|
selectedToken: false,
|
|
}), 'ffff00')
|
|
})
|
|
|
|
it('should calculate the correct amount when a selectedToken is defined', () => {
|
|
assert.deepEqual(calcMaxAmount({
|
|
selectedToken: {
|
|
decimals: 10,
|
|
},
|
|
tokenBalance: 100,
|
|
}), 'e8d4a51000')
|
|
})
|
|
})
|
|
|
|
})
|