Change test to passing

This commit is contained in:
Sahat Yalkabov
2014-02-26 02:54:24 -05:00
parent 5d215165ec
commit 00fef783e0

View File

@ -10,10 +10,10 @@ describe('GET /', function() {
});
describe('GET /reset', function() {
it('should load password reset page', function(done) {
it('should return 404', function(done) {
request(app)
.get('/reset')
.expect(200, done);
.expect(404, done);
// this will fail
});
});