You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uncaught Error: pushFailure() assertion outside test context, was at F.QUnit.start (.../qunit.js:464:10)`, unless I set `QUnit.config.autostart = false;
// Do not start QUnit tests before bind,// we need to setup logging callbacks first.if(window.QUnit&&window.QUnit.config){window.QUnit.config.autostart=false;}
This is executed when there is no QUnit in global space yet (inject.js is always the first script, in fact yeti makes sure it to be first) - code above has no chance to execute, ever.
So autostart is never disabled and QUnit.start() is run twice.
The text was updated successfully, but these errors were encountered:
All QUnit tests fail in all browsers with:
The problem is at: lib/hub/view/public/inject.js#L7:
This is executed when there is no QUnit in global space yet (inject.js is always the first script, in fact yeti makes sure it to be first) - code above has no chance to execute, ever.
So autostart is never disabled and QUnit.start() is run twice.
The text was updated successfully, but these errors were encountered: