Added a failing test for travis-ci
This commit is contained in:
@ -7,4 +7,13 @@ describe('GET /', function() {
|
||||
.get('/')
|
||||
.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
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user