UNPKG

nwb

Version:

A toolkit for React, Preact & Inferno apps, React libraries and other npm modules for the web, with no configuration (until you need it)

24 lines (18 loc) 464 B
import expect from 'expect' import React from 'react' import {render, unmountComponentAtNode} from 'react-dom' import App from 'src/App' describe('App component', () => { let node beforeEach(() => { node = document.createElement('div') }) afterEach(() => { unmountComponentAtNode(node) }) it('displays a welcome message', () => { render(<App/>, node, () => { expect(node.textContent).toContain('Welcome to React') }) }) })