Skip to content

Commit

Permalink
fix beta build
Browse files Browse the repository at this point in the history
  • Loading branch information
Bing Dai committed Oct 15, 2021
1 parent a780908 commit 1d51742
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/helpers/setup-ember-debug-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import EmberRouter from '@ember/routing/router';
import {
getApplication,
Expand All @@ -22,9 +23,13 @@ export default function setupEmberDebugTest(hooks, options = {}) {
originalApp = getApplication();
originalIgnoreDeprecations = EmberDebug.IGNORE_DEPRECATIONS;

app = Application.create(config.APP);
app = Application.create({
...config.APP,
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix,
Resolver
});
setApplication(app);

await setupContext(this);
await setupApplicationContext(this);

Expand Down

0 comments on commit 1d51742

Please sign in to comment.