diff --git a/test/app_test.js b/test/app_test.js index dec1aaad71..d02784c746 100644 --- a/test/app_test.js +++ b/test/app_test.js @@ -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 }); }); \ No newline at end of file