mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
test - add comment about test behavior oddity
This commit is contained in:
parent
0419276958
commit
07fa26d1f0
@ -23,4 +23,4 @@ pump(
|
|||||||
console.log(`Integration test build completed: "${bundlePath}"`)
|
console.log(`Integration test build completed: "${bundlePath}"`)
|
||||||
process.exit(0)
|
process.exit(0)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -43,17 +43,15 @@ async function runSendFlowTest(assert, done) {
|
|||||||
let sendFromFieldItemAddress = await queryAsync($, '.account-list-item__account-name')
|
let sendFromFieldItemAddress = await queryAsync($, '.account-list-item__account-name')
|
||||||
assert.equal(sendFromFieldItemAddress[0].textContent, 'Send Account 4', 'send from field shows correct account name')
|
assert.equal(sendFromFieldItemAddress[0].textContent, 'Send Account 4', 'send from field shows correct account name')
|
||||||
|
|
||||||
await timeout()
|
|
||||||
const sendFromFieldItem = await queryAsync($, '.account-list-item')
|
const sendFromFieldItem = await queryAsync($, '.account-list-item')
|
||||||
sendFromFieldItem[0].click()
|
sendFromFieldItem[0].click()
|
||||||
|
|
||||||
|
// this seems to fail if the firefox window is not in focus...
|
||||||
const sendFromDropdownList = await queryAsync($, '.send-v2__from-dropdown__list')
|
const sendFromDropdownList = await queryAsync($, '.send-v2__from-dropdown__list')
|
||||||
assert.equal(sendFromDropdownList.children().length, 4, 'send from dropdown shows all accounts')
|
assert.equal(sendFromDropdownList.children().length, 4, 'send from dropdown shows all accounts')
|
||||||
console.log(`!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! sendFromDropdownList.children()[1]`, sendFromDropdownList.children()[1]);
|
|
||||||
sendFromDropdownList.children()[1].click()
|
sendFromDropdownList.children()[1].click()
|
||||||
|
|
||||||
sendFromFieldItemAddress = await queryAsync($, '.account-list-item__account-name')
|
sendFromFieldItemAddress = await queryAsync($, '.account-list-item__account-name')
|
||||||
console.log(`!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! sendFromFieldItemAddress[0]`, sendFromFieldItemAddress[0]);
|
|
||||||
assert.equal(sendFromFieldItemAddress[0].textContent, 'Send Account 2', 'send from field dropdown changes account name')
|
assert.equal(sendFromFieldItemAddress[0].textContent, 'Send Account 2', 'send from field dropdown changes account name')
|
||||||
|
|
||||||
let sendToFieldInput = await queryAsync($, '.send-v2__to-autocomplete__input')
|
let sendToFieldInput = await queryAsync($, '.send-v2__to-autocomplete__input')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user