Add delays so firefox can catch up

This commit is contained in:
Berkeley Martinez
2015-12-02 11:19:15 -08:00
parent 0dfb317a38
commit b8d0d78f81
2 changed files with 3 additions and 2 deletions

View File

@ -61,7 +61,7 @@ window.common = (function(global) {
.first()
// the delay here is to give code within the iframe
// control to run
.delay(100);
.delay(400);
})
.map(() => code);
};

View File

@ -40,7 +40,8 @@ window.$(document).ready(function() {
return Rx.Observable.throw(window.__err);
}
return Rx.Observable.from(tests)
return Rx.Observable.from(tests, null, null, Rx.Scheduler.default)
.delay(100)
.map(test => {
const userTest = {};
common.appendToOutputDisplay('');