VueJS Jest测试Ajax调用(axios)
I'm about to test the updated data images on the first-page load which i called an ajax through a method. I made the test mock for the ajax call, but it's still failed, here is my test:
主线
<template>
<div id="app">
<HelloWorld msg="Basic App"/>
</d...