aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-05-14 17:31:41 +0800
committerDan <danjm.com@gmail.com>2018-05-14 17:31:41 +0800
commitc2ed2d4e5003abd01552570452a5b0b38626abca (patch)
tree4d5e0a96cb75f3fdb2812e11c10a61b2e0a68d32
parent145e53b404af6adb49fba2636474455aba86ff81 (diff)
downloadtangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar.gz
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar.bz2
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar.lz
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar.xz
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.tar.zst
tangerine-wallet-browser-c2ed2d4e5003abd01552570452a5b0b38626abca.zip
Lint fixes
-rw-r--r--ui/app/components/send_/account-list-item/tests/account-list-item-component.test.js4
-rw-r--r--ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-component.test.js2
-rw-r--r--ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js3
-rw-r--r--ui/app/components/send_/send-content/send-from-row/from-dropdown/tests/from-dropdown-component.test.js2
-rw-r--r--ui/app/components/send_/send-content/send-from-row/tests/send-from-row-component.test.js8
-rw-r--r--ui/app/components/send_/send-content/send-gas-row/tests/send-gas-row-component.test.js10
-rw-r--r--ui/app/components/send_/send-content/send-to-row/tests/send-to-row-component.test.js2
-rw-r--r--ui/app/components/send_/send-footer/tests/send-footer-component.test.js2
-rw-r--r--ui/app/components/send_/send-header/tests/send-header-component.test.js2
-rw-r--r--ui/app/components/send_/tests/send-component.test.js2
10 files changed, 6 insertions, 31 deletions
diff --git a/ui/app/components/send_/account-list-item/tests/account-list-item-component.test.js b/ui/app/components/send_/account-list-item/tests/account-list-item-component.test.js
index 1a98934f5..f312896c4 100644
--- a/ui/app/components/send_/account-list-item/tests/account-list-item-component.test.js
+++ b/ui/app/components/send_/account-list-item/tests/account-list-item-component.test.js
@@ -7,7 +7,7 @@ import Identicon from '../../../identicon'
import CurrencyDisplay from '../../../send/currency-display'
const utilsMethodStubs = {
- checksumAddress: sinon.stub().returns('mockCheckSumAddress')
+ checksumAddress: sinon.stub().returns('mockCheckSumAddress'),
}
const AccountListItem = proxyquire('../account-list-item.component.js', {
@@ -21,7 +21,6 @@ const propsMethodSpies = {
describe('AccountListItem Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<AccountListItem
@@ -34,7 +33,6 @@ describe('AccountListItem Component', function () {
handleClick={propsMethodSpies.handleClick}
icon={<i className="mockIcon" />}
/>, { context: { t: str => str + '_t' } })
- instance = wrapper.instance()
})
afterEach(() => {
diff --git a/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-component.test.js b/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-component.test.js
index 4f884eb69..8355ebf10 100644
--- a/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-component.test.js
+++ b/ui/app/components/send_/send-content/send-amount-row/tests/send-amount-row-component.test.js
@@ -14,8 +14,6 @@ const propsMethodSpies = {
updateSendAmountError: sinon.spy(),
}
-const MOCK_EVENT = { preventDefault: () => {} }
-
sinon.spy(SendAmountRow.prototype, 'handleAmountChange')
sinon.spy(SendAmountRow.prototype, 'validateAmount')
diff --git a/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js b/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js
index 44de529d4..b92dd4dfe 100644
--- a/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js
+++ b/ui/app/components/send_/send-content/send-dropdown-list/tests/send-dropdown-list-component.test.js
@@ -15,7 +15,6 @@ sinon.spy(SendDropdownList.prototype, 'getListItemIcon')
describe('SendDropdownList Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<SendDropdownList
@@ -28,7 +27,6 @@ describe('SendDropdownList Component', function () {
onSelect={propsMethodSpies.onSelect}
activeAddress={'mockAddress2'}
/>, { context: { t: str => str + '_t' } })
- instance = wrapper.instance()
})
afterEach(() => {
@@ -81,7 +79,6 @@ describe('SendDropdownList Component', function () {
account,
className,
handleClick,
- icon,
} = accountListItem.props()
assert.deepEqual(account, { address: 'mockAccount' + index })
assert.equal(className, 'account-list-item__dropdown')
diff --git a/ui/app/components/send_/send-content/send-from-row/from-dropdown/tests/from-dropdown-component.test.js b/ui/app/components/send_/send-content/send-from-row/from-dropdown/tests/from-dropdown-component.test.js
index 333775341..84fcb281e 100644
--- a/ui/app/components/send_/send-content/send-from-row/from-dropdown/tests/from-dropdown-component.test.js
+++ b/ui/app/components/send_/send-content/send-from-row/from-dropdown/tests/from-dropdown-component.test.js
@@ -15,7 +15,6 @@ const propsMethodSpies = {
describe('FromDropdown Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<FromDropdown
@@ -26,7 +25,6 @@ describe('FromDropdown Component', function () {
openDropdown={propsMethodSpies.openDropdown}
selectedAccount={ { address: 'mockAddress' } }
/>, { context: { t: str => str + '_t' } })
- instance = wrapper.instance()
})
afterEach(() => {
diff --git a/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-component.test.js b/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-component.test.js
index 16463abf3..9ba8d1739 100644
--- a/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-component.test.js
+++ b/ui/app/components/send_/send-content/send-from-row/tests/send-from-row-component.test.js
@@ -14,8 +14,6 @@ const propsMethodSpies = {
setSendTokenBalance: sinon.spy(),
}
-const MOCK_EVENT = { preventDefault: () => {} }
-
sinon.spy(SendFromRow.prototype, 'handleFromChange')
describe('SendFromRow Component', function () {
@@ -60,8 +58,8 @@ describe('SendFromRow Component', function () {
it('should call tokenContract.balanceOf and setSendTokenBalance if tokenContract is defined', async () => {
wrapper.setProps({
tokenContract: {
- balanceOf: () => new Promise((resolve) => resolve('mockUsersToken'))
- }
+ balanceOf: () => new Promise((resolve) => resolve('mockUsersToken')),
+ },
})
assert.equal(propsMethodSpies.setSendTokenBalance.callCount, 0)
await instance.handleFromChange('mockFrom')
@@ -81,9 +79,7 @@ describe('SendFromRow Component', function () {
it('should pass the correct props to SendRowWrapper', () => {
const {
- errorType,
label,
- showError,
} = wrapper.find(SendRowWrapper).props()
assert.equal(label, 'from_t:')
diff --git a/ui/app/components/send_/send-content/send-gas-row/tests/send-gas-row-component.test.js b/ui/app/components/send_/send-content/send-gas-row/tests/send-gas-row-component.test.js
index a96e8c8bb..e4f05d708 100644
--- a/ui/app/components/send_/send-content/send-gas-row/tests/send-gas-row-component.test.js
+++ b/ui/app/components/send_/send-content/send-gas-row/tests/send-gas-row-component.test.js
@@ -11,11 +11,8 @@ const propsMethodSpies = {
showCustomizeGasModal: sinon.spy(),
}
-const MOCK_EVENT = { preventDefault: () => {} }
-
describe('SendGasRow Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<SendGasRow
@@ -25,7 +22,6 @@ describe('SendGasRow Component', function () {
gasTotal={'mockGasTotal'}
showCustomizeGasModal={propsMethodSpies.showCustomizeGasModal}
/>, { context: { t: str => str + '_t' } })
- instance = wrapper.instance()
})
afterEach(() => {
@@ -57,10 +53,10 @@ describe('SendGasRow Component', function () {
gasTotal,
onClick,
} = wrapper.find(SendRowWrapper).childAt(0).props()
- assert.equal(conversionRate,20)
- assert.equal(convertedCurrency,'mockConvertedCurrency')
+ assert.equal(conversionRate, 20)
+ assert.equal(convertedCurrency, 'mockConvertedCurrency')
assert.equal(gasLoadingError, false)
- assert.equal(gasTotal,'mockGasTotal')
+ assert.equal(gasTotal, 'mockGasTotal')
assert.equal(propsMethodSpies.showCustomizeGasModal.callCount, 0)
onClick()
assert.equal(propsMethodSpies.showCustomizeGasModal.callCount, 1)
diff --git a/ui/app/components/send_/send-content/send-to-row/tests/send-to-row-component.test.js b/ui/app/components/send_/send-content/send-to-row/tests/send-to-row-component.test.js
index a4084a360..df6ad6fe8 100644
--- a/ui/app/components/send_/send-content/send-to-row/tests/send-to-row-component.test.js
+++ b/ui/app/components/send_/send-content/send-to-row/tests/send-to-row-component.test.js
@@ -14,8 +14,6 @@ const propsMethodSpies = {
updateSendToError: sinon.spy(),
}
-const MOCK_EVENT = { preventDefault: () => {} }
-
sinon.spy(SendToRow.prototype, 'handleToChange')
describe('SendToRow Component', function () {
diff --git a/ui/app/components/send_/send-footer/tests/send-footer-component.test.js b/ui/app/components/send_/send-footer/tests/send-footer-component.test.js
index 4689434d4..c0b8f956f 100644
--- a/ui/app/components/send_/send-footer/tests/send-footer-component.test.js
+++ b/ui/app/components/send_/send-footer/tests/send-footer-component.test.js
@@ -23,7 +23,6 @@ sinon.spy(SendFooter.prototype, 'onSubmit')
describe('SendFooter Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<SendFooter
@@ -46,7 +45,6 @@ describe('SendFooter Component', function () {
unapprovedTxs={['mockTx']}
update={propsMethodSpies.update}
/>, { context: { t: str => str } })
- instance = wrapper.instance()
})
afterEach(() => {
diff --git a/ui/app/components/send_/send-header/tests/send-header-component.test.js b/ui/app/components/send_/send-header/tests/send-header-component.test.js
index 17629eb65..c9d6d8023 100644
--- a/ui/app/components/send_/send-header/tests/send-header-component.test.js
+++ b/ui/app/components/send_/send-header/tests/send-header-component.test.js
@@ -18,7 +18,6 @@ sinon.spy(SendHeader.prototype, 'onClose')
describe('SendHeader Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<SendHeader
@@ -26,7 +25,6 @@ describe('SendHeader Component', function () {
history={historySpies}
isToken={false}
/>, { context: { t: str => str } })
- instance = wrapper.instance()
})
afterEach(() => {
diff --git a/ui/app/components/send_/tests/send-component.test.js b/ui/app/components/send_/tests/send-component.test.js
index a2f87dea8..60b160333 100644
--- a/ui/app/components/send_/tests/send-component.test.js
+++ b/ui/app/components/send_/tests/send-component.test.js
@@ -27,7 +27,6 @@ sinon.spy(SendTransactionScreen.prototype, 'updateGas')
describe('Send Component', function () {
let wrapper
- let instance
beforeEach(() => {
wrapper = shallow(<SendTransactionScreen
@@ -51,7 +50,6 @@ describe('Send Component', function () {
updateSendErrors={propsMethodSpies.updateSendErrors}
updateSendTokenBalance={propsMethodSpies.updateSendTokenBalance}
/>)
- instance = wrapper.instance()
})
afterEach(() => {