aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js')
-rw-r--r--ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js39
1 files changed, 37 insertions, 2 deletions
diff --git a/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js b/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js
index 5b133fbe2..119ae640b 100644
--- a/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js
+++ b/ui/app/components/gas-customization/gas-modal-page-container/tests/gas-modal-page-container-container.test.js
@@ -2,26 +2,45 @@ import assert from 'assert'
import proxyquire from 'proxyquire'
import sinon from 'sinon'
-// let mapStateToProps
+let mapStateToProps
let mapDispatchToProps
const actionSpies = {
hideModal: sinon.spy(),
}
+const customGasActionSpies = {
+ setCustomGasPrice: sinon.spy(),
+ setCustomGasLimit: sinon.spy(),
+}
+
proxyquire('../gas-modal-page-container.container.js', {
'react-redux': {
connect: (ms, md) => {
- // mapStateToProps = ms
+ mapStateToProps = ms
mapDispatchToProps = md
return () => ({})
},
},
+ '../../../selectors/custom-gas': {
+ getCustomGasPrice: (s) => `mockGasPrice:${s}`,
+ getCustomGasLimit: (s) => `mockGasLimit:${s}`,
+ },
'../../../actions': actionSpies,
+ '../../../ducks/custom-gas': customGasActionSpies,
})
describe('gas-modal-page-container container', () => {
+ describe('mapStateToProps()', () => {
+
+ it('should map the correct properties to props', () => {
+ assert.equal(mapStateToProps('mockState').customGasPrice, 'mockGasPrice:mockState')
+ assert.equal(mapStateToProps('mockState').customGasLimit, 'mockGasLimit:mockState')
+ })
+
+ })
+
describe('mapDispatchToProps()', () => {
let dispatchSpy
let mapDispatchToPropsObject
@@ -39,6 +58,22 @@ describe('gas-modal-page-container container', () => {
})
})
+ describe('updateCustomGasPrice()', () => {
+ it('should dispatch a setCustomGasPrice action', () => {
+ mapDispatchToPropsObject.updateCustomGasPrice()
+ assert(dispatchSpy.calledOnce)
+ assert(customGasActionSpies.setCustomGasPrice.calledOnce)
+ })
+ })
+
+ describe('updateCustomGasLimit()', () => {
+ it('should dispatch a setCustomGasLimit action', () => {
+ mapDispatchToPropsObject.updateCustomGasLimit()
+ assert(dispatchSpy.calledOnce)
+ assert(customGasActionSpies.setCustomGasLimit.calledOnce)
+ })
+ })
+
})
})