我正在 vuejs 上使用 jest 测试我的应用程序。当我TypeError: Cannot read property 'salt' of null
使用crypto-js
.
test("DASHBOARD ACCESS PERMISSION", async () => {
let wrapper = mount(Dashboard, {
stubs: ["router-link", "router-view"],
vuetify,
router,
localVue,
});
wrapper.vm.checkingRoutes();
});
运行测试时,它运行checkingRoutes
功能
let key = 'abcd'
var bytes = CryptoJS.AES.decrypt('encripted key is here', key);
var data = bytes.toString(CryptoJS.enc.Utf8);
console.log(data)
如何解决@vue/test-utils 上的问题