I use vue-composition-api in my program like ` setup(){ const fn = ()=>{} defineExpose({ fn }); } ` Can't I test this function in my test file? I check `wrapper.vm`,its not on vm。 So is there a way to test this function?