Skip to content

Commit 487ff6f

Browse files
committed
Merge remote-tracking branch 'origin/HSM-1084'
2 parents 06f9500 + 405fa81 commit 487ff6f

File tree

1 file changed

+3
-2
lines changed
  • modules/sdk-core/test/unit/account-lib/mpc/tss/ecdsa

1 file changed

+3
-2
lines changed

modules/sdk-core/test/unit/account-lib/mpc/tss/ecdsa/ecdsa.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@ import { loadWebAssembly } from '@bitgo/sdk-opensslbytes';
2121

2222
const openSSLBytes = loadWebAssembly().buffer;
2323

24-
describe('ecdsa tss', function (this: Mocha.Context) {
25-
this.timeout(60000);
24+
describe('ecdsa tss', function () {
2625
const ecdsa = new Ecdsa();
2726

2827
let signCombine1: SignCombineRT, signCombine2: SignCombineRT;
2928

3029
before('generate key and sign phase 1 to 4', async function () {
30+
// In some execution environments (e.g. CI), generateNtilde below may take longer at times.
31+
this.timeout('40s');
3132
const paillierKeyStub = sinon.stub(paillierBigint, 'generateRandomKeys');
3233

3334
paillierKeyStub.onCall(0).returns(Promise.resolve(paillierKeyPairs[0]));

0 commit comments

Comments
 (0)