From 188c7a4bfc59ba6955979a748279f2440ffea4e0 Mon Sep 17 00:00:00 2001 From: Robert O'Connor Date: Tue, 28 Feb 2017 07:19:24 -0500 Subject: [PATCH] Don't skip the test for delaying submissions under 5s. --- tests/signup/botproof.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/signup/botproof.js b/tests/signup/botproof.js index 4528d25..a7256fb 100644 --- a/tests/signup/botproof.js +++ b/tests/signup/botproof.js @@ -59,7 +59,7 @@ describe('botproof', () => { .end(() => {}); }); - it.skip('should delay forms submitted under 5s', function(done) { + it('should delay forms submitted under 5s', function(done) { this.timeout(6000); const app = express(); @@ -213,4 +213,4 @@ describe('botproof', () => { }); }); -}); \ No newline at end of file +});