Skip to content

Commit

Permalink
Fix missing import in instance-initializer blueprint for ember-mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
simonihmig committed Dec 26, 2018
1 parent f277f7e commit 802d2f3
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 802d2f3

Please sign in to comment.