1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00

Make notice skipping async

This commit is contained in:
Dan Finlay 2017-11-29 12:39:48 -08:00
parent 9276fea6bc
commit 42108ba3bc

View File

@ -6,7 +6,7 @@ async function runFirstTimeUsageTest (assert, done) {
const app = $('#app-content')
skipNotices()
await skipNotices()
await timeout()
@ -41,7 +41,7 @@ async function runFirstTimeUsageTest (assert, done) {
await timeout(1000)
skipNotices()
await skipNotices()
// secret backup phrase
const seedTitle = app.find('.backup-phrase__title')[0]
@ -135,7 +135,7 @@ function timeout (time) {
})
}
function skipNotices () {
async function skipNotices () {
while (true) {
const button = app.find('button')
if (button && button.html() === 'Accept') {