File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,7 @@ describe("config.maxRetries", () => {
1111 const dbName = `testdb_${ Date . now ( ) } ` ;
1212 const collectionName = `collection-${ Date . now ( ) } ` ;
1313 let db : Database , collection : DocumentCollection < { data : number } > ;
14- before ( async function ( ) {
15- this . timeout ( 60000 ) ;
14+ before ( async ( ) => {
1615 system = new Database ( { ...config , poolSize : 1_000 } ) ;
1716 if ( Array . isArray ( config . url ) && config . loadBalancingStrategy !== "NONE" ) {
1817 await system . acquireHostList ( ) ;
@@ -21,7 +20,7 @@ describe("config.maxRetries", () => {
2120 collection = await db . createCollection ( collectionName ) ;
2221 await db . waitForPropagation (
2322 { pathname : `/_api/collection/${ collection . name } ` } ,
24- 60000 ,
23+ 80000 ,
2524 ) ;
2625 } ) ;
2726 after ( async ( ) => {
You can’t perform that action at this time.
0 commit comments