Open
Description
I'm submitting a ... (check one with "x")
[ ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[x] support request
Current behavior
Testing vue components with code splitting is throwing on the import
Minimal reproduction of the problem with instructions
Create a component that async loads other components:
<script>
const Modal = () => import(/* webpackChunkName: "Modal" */ "@/pages/common/Modal.vue");
export default {
name: "TileEditModal",
components: {
Modal
},
data() {
return
},
methods: {
test() {
return true;
}
}
}
</script>
Create a tests, upon running jest it throws an exception on the import
Metadata
Metadata
Assignees
Labels
No labels