it('Should call custom method and that result should be true', function(done){
      Chat.find("room1", 1429291245).then(function(chat){
        expect(chat.customProtoMethod()).to.equal(true);
        done();
      });