それが私の側にあるのか、それともzombie.jsにあるのかはわかりませんが、この非常に単純なzombie.jsスクリプトをバックボーンアプリで動作させることができないようです。それは完全に私の側の問題ですか、それとも、ゾンビ.jsがバックボーンアプリでうまく動作しないという既知の問題ですか? また、関連する場合に備えて、Pow (http://pow.cx/) を使用して myapp.dev を介してアプリに接続しています。
バックボーンを使用したアドバイスやzombie.jsの例は非常に役立ちます!
Browser = require "zombie"
assert = require "assert"
browser = new Browser()
browser.visit "http://myapp.dev/", ->
browser.clickLink ".sign-in a.route", ->
browser.fill "email", "me@example.com"
browser.fill "password", "mypassword"
browser.pressButton "input[type=submit]", ->
#the html that is outputted is the exact same as before
#the link is clicked, doesn't seem to be following through
console.log browser.html(".sign-out a.route")