refactor account details test to use fixtures (#11926)
parent
9b6acb7370
commit
f4d93776d9
@ -0,0 +1,38 @@ |
||||
const { strict: assert } = require('assert'); |
||||
const { withFixtures } = require('../helpers'); |
||||
|
||||
describe('Show account details', function () { |
||||
const ganacheOptions = { |
||||
accounts: [ |
||||
{ |
||||
secretKey: |
||||
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC', |
||||
balance: 25000000000000000000, |
||||
}, |
||||
], |
||||
}; |
||||
it('should show the QR code for the account', async function () { |
||||
await withFixtures( |
||||
{ |
||||
fixtures: 'imported-account', |
||||
ganacheOptions, |
||||
title: this.test.title, |
||||
}, |
||||
async ({ driver }) => { |
||||
await driver.navigate(); |
||||
await driver.fill('#password', 'correct horse battery staple'); |
||||
await driver.press('#password', driver.Key.ENTER); |
||||
|
||||
await driver.clickElement( |
||||
'[data-testid="account-options-menu-button"]', |
||||
); |
||||
await driver.clickElement( |
||||
'[data-testid="account-options-menu__account-details"]', |
||||
); |
||||
|
||||
const qrCode = await driver.findElement('.qr-code__wrapper'); |
||||
assert.equal(await qrCode.isDisplayed(), true); |
||||
}, |
||||
); |
||||
}); |
||||
}); |
Loading…
Reference in new issue