bs-jest-dom

4.1.1 • Public • Published

bs-jest-dom · Build Status npm Codecov

BuckleScript bindings for jest-dom.

Installation

$ yarn add --dev bs-jest-dom
 
# or.. 
 
$ npm install --save-dev bs-jest-dom

Usage

Add to bsconfig.json

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

With bs-jest and bs-react-testing-library

/* Heading_test.re */
 
open Jest;
open JestDom;
open ReactTestingLibrary;
 
module Heading = {
  [@react.component]
  let make = (~text) => <h1> {ReasonReact.string(text)} </h1>;
};
 
test("renders in the document", () =>
  <Heading text="Hello, World!" />
  |> render
  |> getByText(~matcher=`Str("Hello, World!"))
  |> expect
  |> toBeInTheDocument
);

With bs-jest and bs-webapi

/* Heading_test.re */
 
open Jest;
open JestDom;
open Webapi.Dom;
open Webapi.Dom.Element;
 
test("heading is visible", () => {
  let div = Document.createElement("div", document);
 
  div->setInnerHTML("<h1>Hello, World!</h1>");
 
  div
  |> querySelector("h1")
  |> expect
  |> toBeVisible;
});

Examples

See src/__tests__ for some examples.

Development

$ git clone https://github.com/wyze/bs-jest-dom.git
cd bs-jest-dom
$ yarn # or `npm install` 

Build

$ yarn build

Test

$ yarn test

Change Log

Full Change Log

v4.1.1 (2020-06-17)

License

MIT © Neil Kistner

Package Sidebar

Install

npm i bs-jest-dom

Weekly Downloads

1,862

Version

4.1.1

License

MIT

Unpacked Size

15.3 kB

Total Files

9

Last publish

Collaborators

  • wyze