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.
9090
9191This will:
9292
93- - add some ` //= require ` s to ` application.js `
93+ - add some ` //= require ` s to ` application.js `
9494- add a ` components/ ` directory for React components
9595- add ` server_rendering.js ` for [ server-side rendering] ( #server-side-rendering )
9696
@@ -108,7 +108,7 @@ window.Post = React.createClass({
108108// or, equivalent:
109109class Post extends React .Component {
110110 render () {
111- return < h1> {this .props .title }< / h1>
111+ return < h1> {this .props .title }< / h1>
112112 }
113113}
114114```
@@ -483,6 +483,8 @@ You can also specify this option in `react_component`:
483483## Development
484484
485485- 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 👍
486488- Update React assets with ` rake react:update `
487489- Update the UJS with ` rake ujs:update `
488490- Releases:
You can’t perform that action at this time.
0 commit comments