1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 12:29:06 +01:00

Delay around the addon install

This commit is contained in:
Thomas 2018-05-01 15:24:32 -07:00
parent 79baa37f31
commit 5e688f0781

View File

@ -16,6 +16,7 @@ describe('', function () {
before(async function () { before(async function () {
const extPath = path.resolve('dist/firefox') const extPath = path.resolve('dist/firefox')
driver = buildFirefoxWebdriver() driver = buildFirefoxWebdriver()
await delay(2000)
installWebExt(driver, extPath) installWebExt(driver, extPath)
await delay(2000) await delay(2000)
}) })
@ -34,7 +35,7 @@ describe('', function () {
it('switches to Firefox addon list', async function () { it('switches to Firefox addon list', async function () {
await driver.get('about:debugging#addons') await driver.get('about:debugging#addons')
await delay(1000) await delay(10000)
}) })
it(`selects MetaMask's extension id and opens it in the current tab`, async function () { it(`selects MetaMask's extension id and opens it in the current tab`, async function () {