We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d35f3d commit 8b46279Copy full SHA for 8b46279
1 file changed
tests/helpers/start-app.js
@@ -1,12 +1,11 @@
1
import Application from '../../app';
2
import config from '../../config/environment';
3
-import { merge } from '@ember/polyfills';
4
import { run } from '@ember/runloop';
5
6
export default function startApp(attrs) {
7
- let attributes = merge({}, config.APP);
+ let attributes = Object.assign({}, config.APP);
8
attributes.autoboot = true;
9
- attributes = merge(attributes, attrs); // use defaults, but you can override;
+ attributes = Object.assign(attributes, attrs); // use defaults, but you can override;
10
11
return run(() => {
12
let application = Application.create(attributes);
0 commit comments