问题 I'm trying to test copy to clipboard in nuxt, but test case can't cover navigator.clipboard.writeText , how to test navigator stuff, i also have tried shallowMount and mount but both not working, <template> <span v-b-tooltip.hover class="url" title="Copy" data-test="copyUrl" @click="handleCopy(listing.url)"> <i class="fa fa-copy" aria-hidden="true"/> </span> </template> <script> export default { ............ methods: { .............. handleCopy(url) { navigator.clipboard.writeText(url); } ...