server/bo_client/tests/helpers/start-app.js
changeset 456 3a32d2f57429
parent 136 5fed7e1716c2
child 517 3143195e91b4
--- a/server/bo_client/tests/helpers/start-app.js	Fri Dec 02 03:30:51 2016 +0100
+++ b/server/bo_client/tests/helpers/start-app.js	Fri Dec 02 09:33:53 2016 +0100
@@ -5,8 +5,8 @@
 export default function startApp(attrs) {
   let application;
 
-  let attributes = Ember.merge({}, config.APP);
-  attributes = Ember.merge(attributes, attrs); // use defaults, but you can override;
+  // use defaults, but you can override
+  let attributes = Ember.assign({}, config.APP, attrs);
 
   Ember.run(() => {
     application = Application.create(attributes);