mirror of
https://github.com/kay-is/react-from-zero.git
synced 2026-01-11 15:48:14 -05:00
86 lines
2.7 KiB
HTML
86 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<title>17 Unit Testing - React From Zero</title>
|
|
|
|
<script src="https://unpkg.com/react@16.4.0/umd/react.development.js"></script>
|
|
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/mocha@5.2.0/mocha.js">
|
|
// The basic test tool for React is Jest, but it doesn't run in the
|
|
// browser. That's why we only use parts of Jest (expect and
|
|
// jest-mock) here to illustrate basic testing setup. Mocha is used as
|
|
// an alternative test runner.
|
|
</script>
|
|
<link href="https://unpkg.com/mocha@5.2.0/mocha.css" rel="stylesheet" />
|
|
|
|
<script src="https://unpkg.com/react-test-renderer@16.4.1/umd/react-test-renderer-shallow.development.js">
|
|
// The shallow renderer is needed to render components without the
|
|
// need of ReactDOM or a DOM in general
|
|
</script>
|
|
|
|
<!-- these two libraries are parts of the Jest tooling -->
|
|
<script src="https://unpkg.com/expect@%3C21/umd/expect.min.js"></script>
|
|
<script src="https://unpkg.com/jest-mock@23.2.0/build-es5/index.js"></script>
|
|
|
|
<!-- the render target of the Mocha test results -->
|
|
<div id="mocha"></div>
|
|
|
|
<script type="text/babel">
|
|
// if you use Jest later, ignore Mocha specific code
|
|
mocha.setup("bdd");
|
|
|
|
// a simple component. It would normally be imported from another file
|
|
function MyComponent() {
|
|
return <div><span className="heading">Title</span></div>;
|
|
}
|
|
|
|
// the first test, Jest and Mocha both using describe() and it()
|
|
describe("Component", function() {
|
|
it("should render", function() {
|
|
// a new renderer is created and used to render the component
|
|
var renderer = new ReactShallowRenderer();
|
|
renderer.render(<MyComponent />);
|
|
|
|
// result here should look quiet familiar from lesson 00
|
|
var result = renderer.getRenderOutput();
|
|
|
|
// now you can traverse the result and check it for correctness
|
|
expect(result.type).toBe("div");
|
|
expect(result.props.children).toEqual(
|
|
<span className="heading">Title</span>
|
|
);
|
|
|
|
// Jest can also create snapshot files
|
|
// they will be used to check for changes in the next test-runs
|
|
// expect(result).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
// it is also possible to mock parts of target code with Jest
|
|
|
|
// here we use the mock part of Jest stand-alone
|
|
// normally this is part of the global "jest" object
|
|
var jest = window["jest-mock"];
|
|
|
|
// mocking a function to test callback behaviour
|
|
var mockCallback = jest.fn();
|
|
|
|
describe("Callback", function() {
|
|
it("should be called two times", function() {
|
|
// a test function that calls a callback two times
|
|
function callCallback(c) {
|
|
c();
|
|
c();
|
|
}
|
|
|
|
callCallback(mockCallback);
|
|
|
|
// the mocked function has some properties to check its usage
|
|
expect(mockCallback.mock.calls.length).toBe(2);
|
|
});
|
|
});
|
|
|
|
mocha.checkLeaks();
|
|
mocha.run();
|
|
</script>
|