diff --git a/test/integration/client-side-operations-timeout/client_side_operations_timeout.prose.test.ts b/test/integration/client-side-operations-timeout/client_side_operations_timeout.prose.test.ts index 89d3ad3e83..e276c9bbaf 100644 --- a/test/integration/client-side-operations-timeout/client_side_operations_timeout.prose.test.ts +++ b/test/integration/client-side-operations-timeout/client_side_operations_timeout.prose.test.ts @@ -1023,7 +1023,7 @@ describe('CSOT spec prose tests', function () { client = this.configuration.newClient({ timeoutMS: 2000, monitorCommands: true }); }); - it('performs two bulkWrites which fail to complete before 2000 ms', async function () { + it.skip('performs two bulkWrites which fail to complete before 2000 ms', async function () { const writes = []; client.on('commandStarted', ev => writes.push(ev)); @@ -1038,7 +1038,7 @@ describe('CSOT spec prose tests', function () { expect(error, error.stack).to.be.instanceOf(MongoOperationTimeoutError); expect(writes.map(ev => ev.commandName)).to.deep.equal(['bulkWrite', 'bulkWrite']); - }); + }).skipReason = 'TODO(NODE-6403): client.bulkWrite is implemented in a follow up'; } ); });