File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
modules/sdk-core/test/unit/account-lib/mpc/tss/ecdsa Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,14 @@ import { loadWebAssembly } from '@bitgo/sdk-opensslbytes';
2121
2222const 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 ] ) ) ;
You can’t perform that action at this time.
0 commit comments