Skip to content

Commit 000fa0f

Browse files
authored
test(NODE-7420): skip large encryption tests on mongocryptd (#4854)
1 parent 0358360 commit 000fa0f

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

test/integration/client-side-encryption/client_side_encryption.prose.06.corpus.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ import { getCSFLEKMSProviders } from '../../csfle-kms-providers';
1212
import { getEncryptExtraOptions } from '../../tools/utils';
1313

1414
describe('Client Side Encryption Prose Corpus Test', function () {
15+
before(async function () {
16+
this.currentTest.skipReason = 'NODE-7417: large encryption tests skipped';
17+
this.skip();
18+
});
19+
1520
const metadata = {
1621
requires: {
1722
clientSideEncryption: true as const

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,9 @@ describe('Client Side Encryption Prose Tests', metadata, function () {
582582
let limitsDoc;
583583

584584
before(async function () {
585+
this.currentTest.skipReason = 'NODE-7417: large encryption tests skipped';
586+
this.skip();
587+
585588
limitsSchema = await loadLimits('limits-schema.json');
586589
limitsKey = await loadLimits('limits-key.json');
587590
limitsDoc = await loadLimits('limits-doc.json');

0 commit comments

Comments
 (0)