Skip to content

Commit

Permalink
Merge pull request #17413 from simonihmig/fix-instance-init-bp-import
Browse files Browse the repository at this point in the history
Fix missing import in instance-initializer blueprint for ember-mocha
  • Loading branch information
rwjblue committed Dec 27, 2018
2 parents 7f7ea2d + 802d2f3 commit d94e53a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { describe, it, beforeEach } from 'mocha';
import { describe, it, afterEach, beforeEach } from 'mocha';
import Application from '@ember/application';
import { run } from '@ember/runloop';
import { initialize } from '<%= modulePrefix %>/instance-initializers/<%= dasherizedModuleName %>';
Expand Down
2 changes: 1 addition & 1 deletion node-tests/fixtures/instance-initializer-test/mocha.js
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { describe, it, beforeEach } from 'mocha';
import { describe, it, afterEach, beforeEach } from 'mocha';
import Application from '@ember/application';
import { run } from '@ember/runloop';
import { initialize } from 'my-app/instance-initializers/foo';
Expand Down
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { describe, it, beforeEach } from 'mocha';
import { describe, it, afterEach, beforeEach } from 'mocha';
import Application from '@ember/application';
import { run } from '@ember/runloop';
import { initialize } from 'my-app/init/instance-initializers/foo';
Expand Down

0 comments on commit d94e53a

Please sign in to comment.