Hello,
New to Ember and trying to get my first test up, just checking for setup as per a tutorial:
module "Ember.js Library",
setup: ->
Ember.run App, App.advanceReadiness
teardown: ->
App.reset()
test "Check HTML is returned", ->
visit("/").then ->
ok exists("*"), "Found HTML!"
I’m getting the following error:
Error: Ember.State has been moved into a plugin: GitHub - emberjs/ember-states
Do I have an outdated ember.js (using ember-rails)? Or should I just install the plugin? If so, what’s the recommended way to do that?
- Oliver