Skip to content

Commit 79138fe

Browse files
remove .only and revert test name changes
1 parent fac9095 commit 79138fe

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test/integration/client-side-encryption/client_side_encryption.prose.12.deadlock.test.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const metadata = {
102102
topology: '!load-balanced'
103103
}
104104
};
105-
describe.only('Connection Pool Deadlock Prevention', function () {
105+
describe('Connection Pool Deadlock Prevention', function () {
106106
installNodeDNSWorkaroundHooks();
107107
beforeEach(async function () {
108108
const mongodbClientEncryption = this.configuration.mongodbClientEncryption;
@@ -157,7 +157,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
157157

158158
const CASE1 = { maxPoolSize: 1, bypassAutoEncryption: false, useKeyVaultClient: false };
159159
it(
160-
`Case 1: ${JSON.stringify(CASE1)}`,
160+
'Case 1',
161161
metadata,
162162
deadlockTest(CASE1, clientEncrypted => {
163163
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(2);
@@ -181,7 +181,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
181181

182182
const CASE2 = { maxPoolSize: 1, bypassAutoEncryption: false, useKeyVaultClient: true };
183183
it(
184-
`Case 2: ${JSON.stringify(CASE2)}`,
184+
'Case 2',
185185
metadata,
186186
deadlockTest(CASE2, (clientEncrypted, clientKeyVault) => {
187187
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(2);
@@ -208,7 +208,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
208208

209209
const CASE3 = { maxPoolSize: 1, bypassAutoEncryption: true, useKeyVaultClient: false };
210210
it(
211-
`Case 3: ${JSON.stringify(CASE3)}`,
211+
'Case 3',
212212
metadata,
213213
deadlockTest(CASE3, clientEncrypted => {
214214
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(2);
@@ -226,7 +226,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
226226

227227
const CASE4 = { maxPoolSize: 1, bypassAutoEncryption: true, useKeyVaultClient: true };
228228
it(
229-
`Case 4: ${JSON.stringify(CASE4)}`,
229+
'Case 4',
230230
metadata,
231231
deadlockTest(CASE4, (clientEncrypted, clientKeyVault) => {
232232
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(1);
@@ -247,7 +247,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
247247

248248
const CASE5 = { maxPoolSize: 0, bypassAutoEncryption: false, useKeyVaultClient: false };
249249
it(
250-
`Case 5: ${JSON.stringify(CASE5)}`,
250+
'Case 5',
251251
metadata,
252252
deadlockTest(CASE5, clientEncrypted => {
253253
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(1);
@@ -274,7 +274,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
274274

275275
const CASE6 = { maxPoolSize: 0, bypassAutoEncryption: false, useKeyVaultClient: true };
276276
it(
277-
`Case 6: ${JSON.stringify(CASE6)}`,
277+
'Case 6',
278278
metadata,
279279
deadlockTest(CASE6, (clientEncrypted, clientKeyVault) => {
280280
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(1);
@@ -301,7 +301,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
301301

302302
const CASE7 = { maxPoolSize: 0, bypassAutoEncryption: true, useKeyVaultClient: false };
303303
it(
304-
`Case 7: ${JSON.stringify(CASE7)}`,
304+
'Case 7',
305305
metadata,
306306
deadlockTest(CASE7, clientEncrypted => {
307307
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(1);
@@ -319,7 +319,7 @@ describe.only('Connection Pool Deadlock Prevention', function () {
319319

320320
const CASE8 = { maxPoolSize: 0, bypassAutoEncryption: true, useKeyVaultClient: true };
321321
it(
322-
`Case 8: ${JSON.stringify(CASE8)}`,
322+
'Case 8',
323323
metadata,
324324
deadlockTest(CASE8, (clientEncrypted, clientKeyVault) => {
325325
expect(clientEncrypted.clientsCreated, 'Incorrect number of clients created').to.equal(1);

0 commit comments

Comments
 (0)