From 5d215165ec0baead305ca85d8fabd43c3fafe2f0 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Wed, 26 Feb 2014 02:46:35 -0500 Subject: [PATCH] Added a failing test for travis-ci --- test/app_test.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/app_test.js b/test/app_test.js index 241ed435a2..dec1aaad71 100644 --- a/test/app_test.js +++ b/test/app_test.js @@ -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 + }); }); \ No newline at end of file