blessing-skin-server/resources/assets/tests/scripts/modal.test.ts
2019-12-01 00:00:44 +08:00

13 lines
344 B
TypeScript

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