@@ -102,7 +102,7 @@ const metadata = {
102
102
topology : '!load-balanced'
103
103
}
104
104
} ;
105
- describe . only ( 'Connection Pool Deadlock Prevention' , function ( ) {
105
+ describe ( 'Connection Pool Deadlock Prevention' , function ( ) {
106
106
installNodeDNSWorkaroundHooks ( ) ;
107
107
beforeEach ( async function ( ) {
108
108
const mongodbClientEncryption = this . configuration . mongodbClientEncryption ;
@@ -157,7 +157,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
157
157
158
158
const CASE1 = { maxPoolSize : 1 , bypassAutoEncryption : false , useKeyVaultClient : false } ;
159
159
it (
160
- ` Case 1: ${ JSON . stringify ( CASE1 ) } ` ,
160
+ ' Case 1' ,
161
161
metadata ,
162
162
deadlockTest ( CASE1 , clientEncrypted => {
163
163
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 2 ) ;
@@ -181,7 +181,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
181
181
182
182
const CASE2 = { maxPoolSize : 1 , bypassAutoEncryption : false , useKeyVaultClient : true } ;
183
183
it (
184
- ` Case 2: ${ JSON . stringify ( CASE2 ) } ` ,
184
+ ' Case 2' ,
185
185
metadata ,
186
186
deadlockTest ( CASE2 , ( clientEncrypted , clientKeyVault ) => {
187
187
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 2 ) ;
@@ -208,7 +208,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
208
208
209
209
const CASE3 = { maxPoolSize : 1 , bypassAutoEncryption : true , useKeyVaultClient : false } ;
210
210
it (
211
- ` Case 3: ${ JSON . stringify ( CASE3 ) } ` ,
211
+ ' Case 3' ,
212
212
metadata ,
213
213
deadlockTest ( CASE3 , clientEncrypted => {
214
214
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 2 ) ;
@@ -226,7 +226,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
226
226
227
227
const CASE4 = { maxPoolSize : 1 , bypassAutoEncryption : true , useKeyVaultClient : true } ;
228
228
it (
229
- ` Case 4: ${ JSON . stringify ( CASE4 ) } ` ,
229
+ ' Case 4' ,
230
230
metadata ,
231
231
deadlockTest ( CASE4 , ( clientEncrypted , clientKeyVault ) => {
232
232
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 1 ) ;
@@ -247,7 +247,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
247
247
248
248
const CASE5 = { maxPoolSize : 0 , bypassAutoEncryption : false , useKeyVaultClient : false } ;
249
249
it (
250
- ` Case 5: ${ JSON . stringify ( CASE5 ) } ` ,
250
+ ' Case 5' ,
251
251
metadata ,
252
252
deadlockTest ( CASE5 , clientEncrypted => {
253
253
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 1 ) ;
@@ -274,7 +274,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
274
274
275
275
const CASE6 = { maxPoolSize : 0 , bypassAutoEncryption : false , useKeyVaultClient : true } ;
276
276
it (
277
- ` Case 6: ${ JSON . stringify ( CASE6 ) } ` ,
277
+ ' Case 6' ,
278
278
metadata ,
279
279
deadlockTest ( CASE6 , ( clientEncrypted , clientKeyVault ) => {
280
280
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 1 ) ;
@@ -301,7 +301,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
301
301
302
302
const CASE7 = { maxPoolSize : 0 , bypassAutoEncryption : true , useKeyVaultClient : false } ;
303
303
it (
304
- ` Case 7: ${ JSON . stringify ( CASE7 ) } ` ,
304
+ ' Case 7' ,
305
305
metadata ,
306
306
deadlockTest ( CASE7 , clientEncrypted => {
307
307
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 1 ) ;
@@ -319,7 +319,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
319
319
320
320
const CASE8 = { maxPoolSize : 0 , bypassAutoEncryption : true , useKeyVaultClient : true } ;
321
321
it (
322
- ` Case 8: ${ JSON . stringify ( CASE8 ) } ` ,
322
+ ' Case 8' ,
323
323
metadata ,
324
324
deadlockTest ( CASE8 , ( clientEncrypted , clientKeyVault ) => {
325
325
expect ( clientEncrypted . clientsCreated , 'Incorrect number of clients created' ) . to . equal ( 1 ) ;
0 commit comments