Skip to content

Commit

Permalink
Don't skip the test for delaying submissions under 5s.
Browse files Browse the repository at this point in the history
  • Loading branch information
robbyoconnor committed Feb 28, 2017
1 parent 877c9a8 commit 188c7a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/signup/botproof.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -213,4 +213,4 @@ describe('botproof', () => {
});
});

});
});

0 comments on commit 188c7a4

Please sign in to comment.