File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
integration/node-specific Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,12 @@ describe('Driver Resources', () => {
3434
3535 context ( 'on MongoClient.close()' , ( ) => {
3636 before ( 'create leak reproduction script' , async function ( ) {
37+ if ( process . version . includes ( 'v24' ) ) {
38+ if ( this . test ) {
39+ this . test . skipReason = 'TODO(NODE-6945): Fix v24 heap snapshot parsing' ;
40+ }
41+ this . test ?. skip ( ) ;
42+ }
3743 if ( globalThis . AbortController == null || typeof this . configuration . serverApi === 'string' ) {
3844 return ;
3945 }
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { alphabetically } from '../utils';
55export const flakyTests = [
66 'Change Streams should properly handle a changeStream event being processed mid-close when invoked with promises' ,
77 'Client Side Encryption (Unified) namedKMS-rewrapManyDataKey rewrap to azure:name1' ,
8+ 'Client Side Encryption (Unified) rewrapManyDataKey rewrap with new GCP KMS provider' ,
89 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to aws' ,
910 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to azure' ,
1011 'Client Side Encryption Prose Tests 16. Rewrap Case 1: Rewrap with separate ClientEncryption should rewrap data key from aws to gcp' ,
You can’t perform that action at this time.
0 commit comments