b0e5a0bc63
Fix executor to always emit the "booted" event and call the callback in the next tick of the event loop, regardless of whether there are any async boot scripts. Before this change, adding a listener for "booted" event was cumbersome: boot(app); if (app.booting) app.on('booted', handler); else handler(); With the fix in place, one can simply write the following: boot(app); app.on('booted', handler); |
||
---|---|---|
.. | ||
fixtures | ||
helpers | ||
browser.multiapp.test.js | ||
browser.test.js | ||
compiler.test.js | ||
executor.test.js |