Skip to content

Commit

Permalink
Wait 1 second before executing e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
zalmoxisus committed Dec 6, 2015
1 parent 92460bf commit c9301f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/shared/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export function doBefore(done, action, load = './build/extension', port = 9515,
})
.forBrowser(browser)
.build();
action().then(() => done());
action().then(() => {
setTimeout(done, 1000);
});
}

export function doAfter(done) {
Expand Down

0 comments on commit c9301f3

Please sign in to comment.