Skip to content

Commit 9ce020a

Browse files
author
s.vychegzhanin
committed
increase timeout for long key gen
1 parent c9e867c commit 9ce020a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ describe('NodeRSA', function () {
153153
for (var size in keySizes) {
154154
(function (size) {
155155
it('should make key pair ' + size.b + '-bit length and public exponent is ' + (size.e ? size.e : size.e + ' and should be 65537'), function () {
156-
this.timeout(15000);
156+
this.timeout(35000);
157157
generatedKeys.push(new NodeRSA({b: size.b, e: size.e}, {encryptionScheme: 'pkcs1'}));
158158
assert.instanceOf(generatedKeys[generatedKeys.length - 1].keyPair, Object);
159159
assert.equal(generatedKeys[generatedKeys.length - 1].isEmpty(), false);

0 commit comments

Comments
 (0)