aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/lib
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-06-01 01:23:38 +0800
committerDan <danjm.com@gmail.com>2018-06-01 01:23:38 +0800
commit3745c1ea4fd62f092c7e277a16b9204b0c0ddaea (patch)
tree6ccabd27e4be6fb95b025ccd8e3b508bd04d3669 /test/integration/lib
parent990b69c6552b5571391ea5fbf05b5fbef1e0ab10 (diff)
downloadtangerine-wallet-browser-3745c1ea4fd62f092c7e277a16b9204b0c0ddaea.tar
tangerine-wallet-browser-3745c1ea4fd62f092c7e277a16b9204b0c0ddaea.tar.gz
tangerine-wallet-browser-3745c1ea4fd62f092c7e277a16b9204b0c0ddaea.tar.bz2
tangerine-wallet-browser-3745c1ea4fd62f092c7e277a16b9204b0c0ddaea.tar.lz
tangerine-wallet-browser-3745c1ea4fd62f092c7e277a16b9204b0c0ddaea.tar.xz
tangerine-wallet-browser-3745c1ea4fd62f092c7e277a16b9204b0c0ddaea.tar.zst
tangerine-wallet-browser-3745c1ea4fd62f092c7e277a16b9204b0c0ddaea.zip
Fix send amount field select in send-new-ui integration test.
Diffstat (limited to 'test/integration/lib')
-rw-r--r--test/integration/lib/send-new-ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/lib/send-new-ui.js b/test/integration/lib/send-new-ui.js
index 6db60ca31..ed1feec7d 100644
--- a/test/integration/lib/send-new-ui.js
+++ b/test/integration/lib/send-new-ui.js
@@ -165,7 +165,7 @@ async function runSendFlowTest(assert, done) {
const sendAmountFieldInEdit = await queryAsync($, '.send-v2__form-row:eq(2)')
sendAmountFieldInEdit.find('.currency-display')[0].click()
- const sendAmountFieldInputInEdit = sendAmountFieldInEdit.find('input:text')
+ const sendAmountFieldInputInEdit = sendAmountFieldInEdit.find('.currency-display__input')
sendAmountFieldInputInEdit.val('1.0')
reactTriggerChange(sendAmountFieldInputInEdit[0])