Skip to content

Commit c20259a

Browse files
committed
Use 60 second timeout on CI
1 parent 8b9986a commit c20259a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/signcode-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ var temp = require('temp').track()
66

77
var describe = global.describe
88
var it = global.it
9+
var timeout = process.env.CI ? 60000 : 30000
910

1011
describe('signcode', function () {
11-
this.timeout(30000)
12+
this.timeout(timeout)
1213

1314
describe('.sign(options)', function () {
1415
it('signs the executable with a cert/key pem pair', function (done) {

0 commit comments

Comments
 (0)