[Vuejs]-VUE Error when run test unit

-1👍

Fixed by replace from true to false 👍🏼

from const srcContext = require.context('../../src', true, /^\.\/(?!main(\.js)?$)/)

to const srcContext = require.context('../../src', false, /^\.\/(?!main(\.js)?$)/)

Leave a comment