README.md in ember-cli-rails-0.1.6 vs README.md in ember-cli-rails-0.1.7

- old
+ new

@@ -111,9 +111,29 @@ <%= include_ember_stylesheet_tags :frontend %> ``` Your Ember application will now be served at the `/` route. +## Ember Test Suite + +To run an Ember app's tests in a browser, mount the `EmberCLI::Engine`: + +```ruby +# config/routes.rb + +Rails.application.routes.draw do + mount EmberCLI::Engine => "ember-tests" if Rails.env.development? + + root "application#index" +end +``` + +Ember tests are served based on the route you mount the Engine on (in this +example, `/ember-tests`) and the name of the Ember app. + +For example, to view tests of the `frontend` app, visit +`http://localhost:3000/ember-tests/frontend`. + ## Enabling LiveReload In order to get LiveReload up and running with EmberCLI Rails, you can install [guard](https://github.com/guard/guard) and [guard-livereload](https://github.com/guard/guard-livereload) gems, run `guard