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.
2 parents 06f9500 + 405fa81 commit 487ff6fCopy full SHA for 487ff6f
1 file changed
modules/sdk-core/test/unit/account-lib/mpc/tss/ecdsa/ecdsa.ts
@@ -21,13 +21,14 @@ import { loadWebAssembly } from '@bitgo/sdk-opensslbytes';
21
22
const openSSLBytes = loadWebAssembly().buffer;
23
24
-describe('ecdsa tss', function (this: Mocha.Context) {
25
- this.timeout(60000);
+describe('ecdsa tss', function () {
26
const ecdsa = new Ecdsa();
27
28
let signCombine1: SignCombineRT, signCombine2: SignCombineRT;
29
30
before('generate key and sign phase 1 to 4', async function () {
+ // In some execution environments (e.g. CI), generateNtilde below may take longer at times.
31
+ this.timeout('40s');
32
const paillierKeyStub = sinon.stub(paillierBigint, 'generateRandomKeys');
33
34
paillierKeyStub.onCall(0).returns(Promise.resolve(paillierKeyPairs[0]));
0 commit comments