Increase test timeout (needed for node 6).

This commit is contained in:
Moos 2016-12-25 10:00:19 -08:00
parent 38bf50174d
commit 85cc97fdb1
1 changed files with 2 additions and 2 deletions

View File

@ -14,14 +14,14 @@ var
assert = chai.assert, assert = chai.assert,
exec = require('child_process').exec, exec = require('child_process').exec,
cmd = 'node ' + __dirname + '/../tools/validate ', cmd = 'node ' + __dirname + '/../tools/validate ',
TIMEOUT_SEC = 30 * 1000, TIMEOUT_SEC = 35 * 1000,
gDone; gDone;
describe('validate isX() using fastIndex', function() { describe('validate isX() using fastIndex', function() {
this.timeout(TIMEOUT_SEC); this.timeout(TIMEOUT_SEC);
this.slow(1500); this.slow(1800);
it('should validate index.verb', function(done) { it('should validate index.verb', function(done) {
gDone = done; gDone = done;