Skip to content

vue-jest can't find babel #160

Closed
Closed
@SuperDJ

Description

@SuperDJ

While trying to test vue components I get the following error:

Cannot find module 'babel-core' at Object. (node_modules/vue-jest/lib/compilers/babel-compiler.js:1:15)

package.json:

"devDependencies": {
	"@babel/core": "^7.2.2",
	"@babel/plugin-syntax-dynamic-import": "^7.2.0",
	"@babel/preset-env": "^7.3.1",
	"@vue/test-utils": "^1.0.0-beta.29",
	"babel-jest": "^24.1.0",
	"babel-loader": "^8.0.5",
	"css-loader": "^2.1.0",
	"file-loader": "^3.0.1",
	"jest": "^24.1.0",
	"mini-css-extract-plugin": "^0.5.0",
	"node-sass": "^4.11.0",
	"sass-loader": "^7.1.0",
	"style-loader": "^0.23.1",
	"vue": "^2.6.6",
	"vue-jest": "^3.0.3",
	"vue-loader": "^15.6.2",
	"vue-router": "^3.0.2",
	"vue-template-compiler": "^2.6.6",
	"webpack": "^4.29.3",
},

.babelrc

{
	"presets": [
		"@babel/preset-env"
	],
	"plugins": [
		"@babel/plugin-syntax-dynamic-import"
	]
}

jest.config.js

module.exports = {
	verbose: true,
	moduleFileExtensions: [ "js", "json", "jsx", "ts", "tsx", "node", "vue" ],
	transform: {
		// process js with `babel-jest`
		"^.+\\.js$": "babel-jest",
		// process `*.vue` files with `vue-jest`
		".*\\.(vue)$": "vue-jest",
	}
};

When looking at the referenced file I can see:

const babel = require('babel-core')

Shouldn't that be @babel/core?

Repository:
https://github.com/SuperDJ/vue-jest-babel-core

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions