Skip to content

Commit

Permalink
add a very simple/basic scenario (that works)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpenner committed Sep 16, 2016
1 parent 0850b99 commit d25ff36
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/dummy/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ import Ember from 'ember';
import Resolver from './resolver';
import loadInitializers from 'ember-load-initializers';
import config from './config/environment';

import acorn from 'npm:acorn';
let App;

Ember.MODEL_FACTORY_INJECTIONS = true;

App = Ember.Application.extend({
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix,
Resolver
Resolver,
acorn // just add this here, so hinting says happy
});

loadInitializers(App, config.modulePrefix);
Expand Down

0 comments on commit d25ff36

Please sign in to comment.