Add extra timeout to squash flakiness

This commit is contained in:
Daniel Imms 2019-03-22 08:53:29 -07:00
parent bed2921b47
commit e0c0e08569

View file

@ -136,6 +136,6 @@ export class Application {
// wait a bit, since focus might be stolen off widgets
// as soon as they open (eg quick open)
await new Promise(c => setTimeout(c, 500));
await new Promise(c => setTimeout(c, 1000));
}
}