We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 890b3c9 commit 836e469Copy full SHA for 836e469
test/Babel.spec.js
@@ -25,7 +25,7 @@ test('processes .vue files with default babel if there is no .babelrc', () => {
25
test('processes .vue files using .babelrc if it exists in route', () => {
26
const babelRcPath = resolve(__dirname, '../.babelrc')
27
const babelRcOriginal = readFileSync(babelRcPath, { encoding: 'utf8' })
28
- writeFileSync(babelRcPath, '{"presets": ["es2015", "stage-2"],"plugins": ["istanbul"]}')
+ writeFileSync(babelRcPath, '{"presets": ["es2015"],"plugins": ["istanbul"]}')
29
const filePath = resolve(__dirname, './resources/Basic.vue')
30
const fileString = readFileSync(filePath, { encoding: 'utf8' })
31
0 commit comments