本文整理汇总了TypeScript中dom-testing-library.fireEvent.click方法的典型用法代码示例。如果您正苦于以下问题:TypeScript fireEvent.click方法的具体用法?TypeScript fireEvent.click怎么用?TypeScript fireEvent.click使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dom-testing-library.fireEvent
的用法示例。
在下文中一共展示了fireEvent.click方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('set ARIA expanded state to false', async () => {
littlefoot(TEST_SETTINGS)
const button = getButton('1')
fireEvent.click(button)
await waitForChange(button)
fireEvent.click(button)
await waitForChange(button)
expect(button).toHaveAttribute('aria-expanded', 'false')
})
示例2: test
test('activate multiple footnotes on click', async () => {
littlefoot({ activateDelay: 1, allowMultiple: true })
const one = getButton('1')
fireEvent.click(one)
await waitForChange(one)
const two = getButton('2')
fireEvent.click(two)
await waitForChange(two)
expect(getAllActiveButtons()).toHaveLength(2)
})
示例3: test
test('setup with custom contentTemplate', async () => {
setDocumentBody('single.html')
littlefoot({
activateDelay: 1,
contentTemplate: `<aside class="custom"
data-footnote-popover-id="<%= id %>"
data-footnote-number="<%= number %>"
>
<div class="littlefoot-footnote__wrapper">
<div class="littlefoot-footnote__content">
<%= content %>
</div>
</div>
</aside>`
})
const button = getButton('1')
fireEvent.click(button)
await waitForChange(button)
const footnote = document.querySelector('aside.custom')
expect(footnote).toHaveAttribute('data-footnote-popover-id', '1')
expect(footnote).toHaveAttribute('data-footnote-number', '1')
const content = footnote!.querySelector('.littlefoot-footnote__content')
expect(content).toContainHTML(`This is the document's only footnote.`)
})
示例4: test
test('setup with activateCallback', () => {
setDocumentBody('single.html')
const activateCallback = jest.fn()
littlefoot({ activateCallback })
const button = getButton('1')
fireEvent.click(button)
const popover = getPopover('1')
expect(activateCallback).toHaveBeenCalledWith(popover, button)
})
示例5: test
test('activate footnote when clicking the button', async () => {
littlefoot(TEST_SETTINGS)
const button = getButton('1')
fireEvent.click(button)
expect(button).toHaveClass('is-changing')
await waitForChange(button)
expect(button).toHaveClass('is-active')
getPopoverByText(/This is the document's only footnote./)
})