You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Luke Childs
41a71c4cec
|
7 years ago | |
---|---|---|
src | 7 years ago | |
test | 7 years ago | |
.gitignore | 7 years ago | |
.travis.yml | 7 years ago | |
LICENSE | 7 years ago | |
README.md | 7 years ago | |
package.json | 7 years ago |
README.md
react-jsdom
Render React components to actual DOM nodes in Node.js
Makes testing simple React components super easy with any Node.js test framework.
Install
npm install --save-dev react-jsdom
Usage
const React = require('react');
const ReactJSDOM = require('react-jsdom');
class Hi extends React.Component {
render() {
return (
<div>
<span>hi</span>
<span>{this.props.person}</span>
</div>
);
}
componentDidMount() {
console.log('I mounted!');
}
}
const elem = ReactJSDOM.render(<Hi person="mum"/>);
// I mounted!
elem.nodeName;
// 'DIV');
elem.querySelector('span:last-child').textContent;
// 'mum'
elem.outerHTML;
// <div>
// <span>hi</span>
// <span>mum</span>
// </div>
License
MIT © Luke Childs