Is it possible to use some kind of await in a Test.
Example:
describe('Sanity Test', t => {
t.it("Sanity", t => {
t.diag("Sanity test");
// something like this
await t.ok(foo, 'foo => Available after 5 seconds');
// not continue before foo available
t.requireOk('Ext.Img');
});
})