Ryu Nishimura
Results
2
comments of
Ryu Nishimura
I had the above problem in my project. I avoided the above problem by writing in the resolutions in package.json.
``` const vueJest = require('vue-jest/lib/template-compiler'); module.exports = { process(content) { const render = function() { vueJest({ content, attrs: { functional: false, }, }); }; return `module.exports = { render: ${render}...