Advertisement
Guest User

Untitled

a guest
Nov 10th, 2012
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. describe "Server", ->
  2.   beforeEach ->
  3.     require '../server.js'
  4.  
  5.   it "responds successfully", (done) ->
  6.     request "http://localhost:3000", (error, response, body) ->
  7.       expect(response.statusCode).toEqual 200
  8.       done()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement