Skip to content

Allow babelInlineConfig to be passed in #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Require babelrc rather than json parse.
  • Loading branch information
Markus Padourek authored Aug 17, 2018
commit 029fc02cfca9013607507125532e2ba1e60b5181
2 changes: 1 addition & 1 deletion lib/load-babel-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = function getBabelConfig (vueJestConfig) {
let babelConfig

if (vueJestConfig.babelRcFile) {
babelConfig = JSON.parse(readFileSync(vueJestConfig.babelRcFile))
babelConfig = require(vueJestConfig.babelRcFile)
} else if (existsSync('babel.config.js')) {
babelConfig = require(path.resolve('babel.config.js'))
} else {
Expand Down