Skip to content

Commit 4ae2b47

Browse files
committed
Document chrome for easy development
1 parent 44e52af commit 4ae2b47

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Then restart your development server.
9090

9191
This 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:
109109
class 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:

0 commit comments

Comments
 (0)