diff --git a/test/integration/node-specific/resource_clean_up.test.ts b/test/integration/node-specific/resource_clean_up.test.ts index 41ec740831..4fd1bd53b1 100644 --- a/test/integration/node-specific/resource_clean_up.test.ts +++ b/test/integration/node-specific/resource_clean_up.test.ts @@ -34,6 +34,12 @@ describe('Driver Resources', () => { context('on MongoClient.close()', () => { before('create leak reproduction script', async function () { + if (process.version.includes('v24')) { + if (this.test) { + this.test.skipReason = 'TODO(NODE-6945): Fix v24 heap snapshot parsing'; + } + this.test?.skip(); + } if (globalThis.AbortController == null || typeof this.configuration.serverApi === 'string') { return; } diff --git a/test/tools/runner/flaky.ts b/test/tools/runner/flaky.ts index 3d11fb7746..4eaf9a59b6 100644 --- a/test/tools/runner/flaky.ts +++ b/test/tools/runner/flaky.ts @@ -5,6 +5,7 @@ import { alphabetically } from '../utils'; export const flakyTests = [ 'Change Streams should properly handle a changeStream event being processed mid-close when invoked with promises', 'Client Side Encryption (Unified) namedKMS-rewrapManyDataKey rewrap to azure:name1', + 'Client Side Encryption (Unified) rewrapManyDataKey rewrap with new GCP KMS provider', 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to aws', 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to azure', 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to gcp',