diff options
author | Thomas Huang <thomas.b.huang@gmail.com> | 2017-11-26 08:37:12 +0800 |
---|---|---|
committer | Thomas Huang <thomas.b.huang@gmail.com> | 2017-11-26 08:37:12 +0800 |
commit | cefe6cded6728ff95d951435430da311356c3b23 (patch) | |
tree | e37ae935d5a6741f97aeea18f6a128518c3645fb /test/unit/components | |
parent | 28409294c3cd70ddbc9a9f3467d402c89e110261 (diff) | |
download | tangerine-wallet-browser-cefe6cded6728ff95d951435430da311356c3b23.tar tangerine-wallet-browser-cefe6cded6728ff95d951435430da311356c3b23.tar.gz tangerine-wallet-browser-cefe6cded6728ff95d951435430da311356c3b23.tar.bz2 tangerine-wallet-browser-cefe6cded6728ff95d951435430da311356c3b23.tar.lz tangerine-wallet-browser-cefe6cded6728ff95d951435430da311356c3b23.tar.xz tangerine-wallet-browser-cefe6cded6728ff95d951435430da311356c3b23.tar.zst tangerine-wallet-browser-cefe6cded6728ff95d951435430da311356c3b23.zip |
Update to Enzyme 3.2.0
Diffstat (limited to 'test/unit/components')
-rw-r--r-- | test/unit/components/balance-component-test.js | 2 | ||||
-rw-r--r-- | test/unit/components/pending-tx-test.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/components/balance-component-test.js b/test/unit/components/balance-component-test.js index a5fededc8..9b1e82acf 100644 --- a/test/unit/components/balance-component-test.js +++ b/test/unit/components/balance-component-test.js @@ -1,7 +1,7 @@ const assert = require('assert') const h = require('react-hyperscript') const { createMockStore } = require('redux-test-utils') -const shallowWithStore = require('../../lib/shallow-with-store') +const { shallowWithStore } = require('../../lib/shallow-with-store') const BalanceComponent = require('../../../ui/app/components/balance-component') const mockState = { metamask: { diff --git a/test/unit/components/pending-tx-test.js b/test/unit/components/pending-tx-test.js index 97cac3216..c6c588e1c 100644 --- a/test/unit/components/pending-tx-test.js +++ b/test/unit/components/pending-tx-test.js @@ -4,7 +4,7 @@ const PendingTx = require('../../../ui/app/components/pending-tx') const ethUtil = require('ethereumjs-util') const { createMockStore } = require('redux-test-utils') -const shallowWithStore = require('../../lib/shallow-with-store') +const { shallowWithStore } = require('../../lib/shallow-with-store') const identities = { abc: {}, def: {} } const mockState = { |