Skip to content

Commit

Permalink
Change addon name to avoid mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Nov 7, 2018
1 parent 156c8a2 commit 045ce3f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }),
};

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 045ce3f

Please sign in to comment.