decide.nolog.cz/tests/test-loader.js

7 lines
164 B
JavaScript
Raw Normal View History

2014-07-06 17:37:54 +02:00
// TODO: load based on params
Ember.keys(requirejs.entries).forEach(function(entry) {
if ((/\-test/).test(entry)) {
require(entry, null, null, true);
}
});