jest 24.0版本 以下
test("getNetworkInfo toThrow1 接口", async ()=> {
console.log("getNetworkInfo 2" + add)
await expect(wrapper.vm.getNetworkInfo(2)).rejects.toThrow("error")
}, 20000)
jest 24.0版本 以上
// jest.config.js
module.exports = {
setupFilesAfterEnv: ['./jest.setup.js']
}
// jest.setup.js
jest.setTimeout(30000)