File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ Then restart your development server.
90
90
91
91
This will:
92
92
93
- - add some ` //= require ` s to ` application.js `
93
+ - add some ` //= require ` s to ` application.js `
94
94
- add a ` components/ ` directory for React components
95
95
- add ` server_rendering.js ` for [ server-side rendering] ( #server-side-rendering )
96
96
@@ -108,7 +108,7 @@ window.Post = React.createClass({
108
108
// or, equivalent:
109
109
class Post extends React .Component {
110
110
render () {
111
- return < h1> {this .props .title }< / h1>
111
+ return < h1> {this .props .title }< / h1>
112
112
}
113
113
}
114
114
```
@@ -483,6 +483,8 @@ You can also specify this option in `react_component`:
483
483
## Development
484
484
485
485
- Run tests with ` rake test ` or ` appraisal rake test `
486
+ - Integration tests run in Headless Chrome which is included in Chrome (59+ linux,OSX | 60+ Windows)
487
+ - ChromeDriver is included with ` chromedriver-helper ` gem so no need to manually install that 👍
486
488
- Update React assets with ` rake react:update `
487
489
- Update the UJS with ` rake ujs:update `
488
490
- Releases:
You can’t perform that action at this time.
0 commit comments