From 1055472f7e79a22f939d90efd785a5e10c2e4d89 Mon Sep 17 00:00:00 2001 From: Neal Beeken Date: Mon, 30 Sep 2024 13:54:32 -0400 Subject: [PATCH] chore: add skipReason --- .../client_side_operations_timeout.prose.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 89d3ad3e836..e276c9bbafd 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'; } ); });