Skip to content

Commit 1e56dde

Browse files
committed
Skip babel for treeForTestSupport
1 parent 271be28 commit 1e56dde

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@ module.exports = {
7272
let trees = [];
7373
if (this.compiler) {
7474
trees.push(this.compiler.treeForTests());
75-
let babel = this.project.addons.find(addon => addon.name === 'ember-cli-babel');
76-
let tree = this.compiler.treeForTestSupport();
77-
trees.push(babel.transpileTree(tree));
75+
trees.push(this.compiler.treeForTestSupport());
7876
}
7977
return this._super.treeForTestSupport.call(this, new MergeTrees(trees));
8078
},

0 commit comments

Comments
 (0)