diff --git a/config/ember-try.js b/config/ember-try.js index 402538b89..bb66e3bff 100644 --- a/config/ember-try.js +++ b/config/ember-try.js @@ -9,7 +9,6 @@ module.exports = function() { getChannelURL('canary'), ]).then(urls => { let env = { - EMBER_CLI_IGNORE_ADDON_NAME_MISMATCH: true, EMBER_OPTIONAL_FEATURES: JSON.stringify({ 'jquery-integration': false }), }; diff --git a/index.js b/index.js index 31b130362..a14934dfa 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ const BroccoliDebug = require('broccoli-debug'); const debugTree = BroccoliDebug.buildDebugCallback('ember-test-helpers'); module.exports = { - name: 'ember-test-helpers', + name: require('./package').name, init() { this._super.init && this._super.init.apply(this, arguments); diff --git a/package.json b/package.json index d6eeb32af..b48e4fe34 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "docs": "scripts/precompile.sh && documentation build --document-exported \"addon-test-support/@ember/test-helpers/index.js\" --config documentation.yml -f md -o API.md && ember ts:clean", "lint": "eslint --ext=js,ts --cache . && tsc -p tsconfig.json --noEmit", "start": "ember serve", - "test": "EMBER_CLI_IGNORE_ADDON_NAME_MISMATCH=1 ember test", + "test": "ember test", "test:all": "ember try:each", "prepublishOnly": "scripts/precompile.sh", "postpublish": "ember ts:clean"