Helpers to easily write tests for React component/JSX code
This package is very small and provide simple helpers to easily use React shallow rendering method in conjunction with react-element-to-jsx-string to write straightforward tests for React component.
$ npm install jsx-test-helpers
Example with Jest:
import React from 'react';
import { noop, renderJSX, JSX } from 'jsx-test-helpers';
import FunctionalComponentToTest from '../your-component';
// fixture
function FakeComponent() {}
test('Can render & test a functional component', () => {
expected(renderJSX(<FunctionalComponentToTest bool />)).toMatch(
JSX(<FakeComponent fixedProp={'some-value'} bool />)
);
});
- ⇄ Pull/Merge requests and ★ Stars are always welcome.
- For bugs and feature requests, please create an issue.
- Pull/Merge requests must be accompanied by passing automated tests (
$ npm test
).