mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
931aaeb700
* Move send to pages/ * Fix unit tests * Finish UI * Integrate asset dropdown to send actions * Remove console.log * Hide asset change during edit * Enable switch from send token to seand eth * Enable switching from token to eth when editing * Fix linter * Fixing test * Fix unit tests * Fix linter * Fix react warning; remove console.log * fix flat test * Add metrics * Address code review comments * Consistent spacing between send screen form rows. * Reduce height of gas buttons on send screen. * Make send screen gas button height dependent on size of contents.
29 lines
1.0 KiB
JavaScript
29 lines
1.0 KiB
JavaScript
import React from 'react'
|
|
import assert from 'assert'
|
|
import { shallow } from 'enzyme'
|
|
import SendRowWarningMessage from '../send-row-warning-message.component.js'
|
|
|
|
describe('SendRowWarningMessage Component', function () {
|
|
let wrapper
|
|
|
|
beforeEach(() => {
|
|
wrapper = shallow(<SendRowWarningMessage
|
|
warnings={{ warning1: 'abc', warning2: 'def' }}
|
|
warningType={'warning3'}
|
|
/>, { context: { t: str => str + '_t' } })
|
|
})
|
|
|
|
describe('render', () => {
|
|
it('should render null if the passed warnings do not contain a warning of warningType', () => {
|
|
assert.equal(wrapper.find('.send-v2__warning').length, 0)
|
|
assert.equal(wrapper.html(), null)
|
|
})
|
|
|
|
it('should render a warning message if the passed warnings contain a warning of warningType', () => {
|
|
wrapper.setProps({ warnings: { warning1: 'abc', warning2: 'def', warning3: 'xyz' } })
|
|
assert.equal(wrapper.find('.send-v2__warning').length, 1)
|
|
assert.equal(wrapper.find('.send-v2__warning').text(), 'xyz_t')
|
|
})
|
|
})
|
|
})
|