Rova

Results 3 issues of Rova

Can't mock repeat? Here is my demo function to be mocked: ```go func FuncDo(str string) (string, error) { if err := ToBeMock(str); err != nil { return "", err }...

这是我的一些代码 ```vue data() { return { audio: [null], isShow: false, musicList: [null] }; }, async mounted() { await this.initSong(); }, methods: { async initSong() { findPlayList() .then(res => { this.musicList...