Change test to passing
This commit is contained in:
@ -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
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user