Like it says in the title:
zombie = require "zombie"
should = require "should"
browser = new zombie.Browser();
describe "index", ->
describe "herp derp", ->
it "should display room input", (done) ->
browser.visit "http://localhost:3000/", (err, browser) ->
if err
throw err.message
browser.text('title').should.equal 'Welcome to Test!'
done()
browser.text('title') returns the html of the entire page. This happens for any element I attempt to select. Any suggestions?