commit 5773a8c8a990c7b15ee2dd0a7c34c34e903d4bc9
parent 4dd661c4ee7e1e53eb6d4ecb8ea3b4c874590be8
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Mon, 9 Feb 2015 23:36:16 +0300
Merge branch 'readme_fix' of https://github.com/sdiaz/react-starter-kit into sdiaz-readme_fix
Diffstat:
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
@@ -40,13 +40,12 @@ utilizing a unidirectional data flow.
│ ├── /assets/ # Static files which are copied to ./build on compile
│ ├── /components/ # React components
│ ├── /constants/ # Enumerations used in action creators and stores
+│ ├── /content/ # Jade application templates
│ ├── /core/ # Core components (Flux dispatcher, base classes, utilities)
│ ├── /stores/ # Stores contain the application state and logic
-│ ├── /app.js # The application's main file (entry point)
-├── /test/ # Unit, integration and load tests
-│ ├── /e2e/ # End-to-end tests
-│ ├── /benchmark/ # Load and stress testing
-│ └── /unit/ # Unit tests
+│ ├── /styles/ # CSS pre-processed files and rules (csscomb, csslint)
+│ ├── /templates/ # Base template files
+│ └── /app.js # The application's main file (entry point)
│── gulpfile.js # Configuration file for automated builds
│── package.json # The list of 3rd party libraries and utilities
└── webpack.config.js # Webpack configuration for bundling and optimization
@@ -112,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/)