Ember.keys is deprected in favor of Object.keys

This commit is contained in:
Robin Ward
2016-04-28 16:37:20 -04:00
parent 187d7d6f96
commit 400c061046
15 changed files with 19 additions and 19 deletions

View File

@ -132,7 +132,7 @@ window.asyncTestDiscourse = helpers.asyncTestDiscourse;
window.controllerFor = helpers.controllerFor;
window.fixture = helpers.fixture;
Ember.keys(requirejs.entries).forEach(function(entry) {
Object.keys(requirejs.entries).forEach(function(entry) {
if ((/\-test/).test(entry)) {
require(entry, null, null, true);
}