it('websocket: should have a get(/test/:name)', function(done) {
    sio.emit('s', "get", "/test/chrisye", {}, {}, function(status, headers, body) {
      expect(status).eql(200);
      expect(body).eql('getchrisye');
      done();