mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
ES6: Tests
This commit is contained in:
parent
3b46b5ecbf
commit
b8bfbcb3cb
19 changed files with 7 additions and 0 deletions
|
@ -114,3 +114,10 @@ QUnit.testDone(function() {
|
|||
Ember.run.debounce = origDebounce;
|
||||
window.sandbox.restore();
|
||||
});
|
||||
|
||||
// Load ES6 tests
|
||||
Ember.keys(requirejs.entries).forEach(function(entry) {
|
||||
if ((/\-test/).test(entry)) {
|
||||
require(entry, null, null, true);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue