Open
Description
This functionality would be useful for tests where we need to wait for some asynchronous set-up, eg MediaReference tests ...
async_test(function(testObject) {
waitForSomethingAsync(function() {
timing_test(function() {
at(1.0, function() {
assert_true(...);
testObject.done();
});
});
});
});