跳到主要内容

jasmine-dom

jasmine-dom 是 Testing Library 的一个配套库,为 Jasmine 提供自定义的 DOM 元素匹配器。

npm install --save-dev @testing-library/jasmine-dom

然后按照 jasmine-dom 文档中的用法部分,将匹配器添加到 Jasmine 中。

<span data-testid="not-empty"><span data-testid="empty"></span></span>
<div data-testid="visible">Visible Example</div>

expect(screen.queryByTestId('not-empty')).not.toBeEmptyDOMElement()
expect(screen.getByText('Visible Example')).toBeVisible()

注意:当使用其中一些匹配器时,你可能需要确保你使用查询函数( 如queryByTestId)而不是获取函数(如getByTestId)。否则,get* 函数可能会 在你的断言之前抛出一个错误。

请查阅jasmine-dom 的文档,了解可用匹配器的完整列表。