1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

lint fixes

This commit is contained in:
frankiebee 2018-08-07 11:14:56 -07:00
parent cbade51ebd
commit ff53a33f81

View File

@ -11,7 +11,6 @@ const {
const { const {
checkBrowserForConsoleErrors, checkBrowserForConsoleErrors,
closeAllWindowHandlesExcept, closeAllWindowHandlesExcept,
verboseReportOnFailure,
findElement, findElement,
findElements, findElements,
loadExtension, loadExtension,
@ -22,6 +21,7 @@ describe('Using MetaMask with an existing account', function () {
const browser = process.env.SELENIUM_BROWSER const browser = process.env.SELENIUM_BROWSER
let driver let driver
let extensionUri let extensionUri
let extensionId
const testSeedPhrase = 'phrase upgrade clock rough situate wedding elder clever doctor stamp excess tent' const testSeedPhrase = 'phrase upgrade clock rough situate wedding elder clever doctor stamp excess tent'
const testAddress = '0xE18035BF8712672935FDB4e5e431b1a0183d2DFC' const testAddress = '0xE18035BF8712672935FDB4e5e431b1a0183d2DFC'
@ -40,7 +40,7 @@ describe('Using MetaMask with an existing account', function () {
const installResult = await setupBrowserAndExtension({ browser, extPath }) const installResult = await setupBrowserAndExtension({ browser, extPath })
driver = installResult.driver driver = installResult.driver
extensionUri = installResult.extensionUri extensionUri = installResult.extensionUri
extensionId = installResult.extensionId
await driver.get(extensionUri) await driver.get(extensionUri)
await delay(300) await delay(300)
}) })