Skip to content

Commit 0ddea3b

Browse files
committed
Extend test timeout for html tests
1 parent 82aeab1 commit 0ddea3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@
7575
"scripts": {
7676
"lint": "eslint bin lib index.js test",
7777
"doc": "documentation index.js -f md > docs/NODE_API.md",
78-
"test": "TAP_TIMEOUT=120 npm run lint && tap --coverage test/*.js test/lib test/misc test/streams"
78+
"test": "npm run lint && tap -t 120 -R tap --coverage test/*.js test/lib test/misc test/streams"
7979
}
8080
}

test/bin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function normalize(result) {
3939
return result;
4040
}
4141

42-
var options = { timeout: 1000 * 30 };
42+
var options = { timeout: 1000 * 120 };
4343

4444
test('documentation binary', function (t) {
4545
documentation(['fixture/simple.input.js'], function (err, data) {

0 commit comments

Comments
 (0)