mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
6 lines
95 B
JavaScript
6 lines
95 B
JavaScript
|
module.exports = jest.fn(fn => {
|
||
|
fn.cancel = jest.fn()
|
||
|
fn.flush = jest.fn()
|
||
|
return fn
|
||
|
})
|