import { showModal } from '@/scripts/modal' test('show modal', async () => { process.nextTick(() => { expect( document.querySelector('.modal-title')!.textContent, ).toBe('general.tip') document.querySelector('.btn-primary')!.click() }) const { value } = await showModal() expect(value).toBe('') })