跳到主要内容

bs-jest-dom

bs-jest-dombs-react-testing-library 的配套库,通过 BuckleScriptReasonML 中的 Jest 提供自定义 DOM 元素匹配 器。

npm install --save-dev bs-jest-dom

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

设置

{
"bs-dev-dependencies": ["bs-jest-dom"]
}

示例

A_test.re
open Jest;
open JestDom;
open ReactTestingLibrary;

module Heading = {
let component = ReasonReact.statelessComponent("Heading");

let make = (~text, _children) => {
...component,
render: _self =>
<h1> {ReasonReact.string(text)} </h1>,
};
};

test("renders with text", () =>
<Heading text="Hello, World!" />
|> render
|> getByText(~matcher=`Str("Hello, World!"))
|> expect
|> toBeInTheDocument
);

更多示例

你可以在 wyze/bs-jest-dom/src/__tests__ 找到更多 bs-jest-dom 的例子。