Skip to content

Commit

Permalink
test(babel-plugin-espower): do not use preset since it makes too much…
Browse files Browse the repository at this point in the history
… assumption
  • Loading branch information
twada committed Oct 31, 2015
1 parent d1b3361 commit 4fe36d1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
},
"devDependencies": {
"babel-core": "^6.0.10",
"babel-preset-es2015": "^6.0.0",
"mocha": "^2.2.4"
},
"directories": {
Expand Down
1 change: 0 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ function testTransform (fixtureName, extraOptions) {
var fixtureFilepath = path.resolve(__dirname, 'fixtures', fixtureName, 'fixture.js');
var expectedFilepath = path.resolve(__dirname, 'fixtures', fixtureName, 'expected.js');
var result = babel.transformFileSync(fixtureFilepath, extend({
presets: ['es2015'],
plugins: ['../index']
}, extraOptions));
var actual = result.code;
Expand Down

0 comments on commit 4fe36d1

Please sign in to comment.