commit 0abb14538bc46915ed17c6ac643b4afd120b0f58 parent 36aab425e7e2d3ca4a6d5424a1415989ed6ec2e7 Author: Santiago Diaz <santiago.diaz@me.com> Date: Mon, 9 Feb 2015 13:42:32 +0100 Added some words to explain the __tests__ dir for Jest Diffstat:
| M | README.md | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md @@ -111,6 +111,8 @@ Run unit tests powered by [Jest](https://facebook.github.io/jest/) with the foll $ npm test ``` +Test any javascript module by creating a `__tests__/` directory where the file is. Name the test by appending `-test.js` to the js file. [Jest](https://facebook.github.io/jest/) will do the rest. + ### Learn More * [Getting Started with React.js](http://facebook.github.io/react/)