Added a failing test for travis-ci

This commit is contained in:
Sahat Yalkabov
2014-02-26 02:46:35 -05:00
parent c8535fe4a1
commit 5d215165ec

View File

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