Skip to content

Commit

Permalink
Merge pull request #542 from ef4/embroider-compat
Browse files Browse the repository at this point in the history
Fix embroider compatibility
  • Loading branch information
Turbo87 authored Nov 16, 2019
2 parents 952a002 + 3fc3c41 commit 2a73e56
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ module.exports = {
included() {
this._super.included.apply(this, arguments);
this.import('vendor/qunit-dom.js', { type: 'test' });
this.import('vendor/define-dummy-module.js', { type: 'test' });
this.import('vendor/overwrite-qunit-dom-root-element.js', { type: 'test' });
},

Expand All @@ -21,4 +20,13 @@ module.exports = {

return new MergeTrees([vendorTree, qunitPluginTree]);
},

treeForAddonTestSupport() {
return new Funnel(`${__dirname}/vendor`, {
files: ['dummy-module.js'],
getDestinationPath() {
return 'qunit-dom/index.js';
},
});
},
};
File renamed without changes.

0 comments on commit 2a73e56

Please sign in to comment.