We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e867c commit 9ce020aCopy full SHA for 9ce020a
test/tests.js
@@ -153,7 +153,7 @@ describe('NodeRSA', function () {
153
for (var size in keySizes) {
154
(function (size) {
155
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);
+ this.timeout(35000);
157
generatedKeys.push(new NodeRSA({b: size.b, e: size.e}, {encryptionScheme: 'pkcs1'}));
158
assert.instanceOf(generatedKeys[generatedKeys.length - 1].keyPair, Object);
159
assert.equal(generatedKeys[generatedKeys.length - 1].isEmpty(), false);
0 commit comments