Skip to content

Commit

Permalink
chore: add skipReason
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Sep 30, 2024
1 parent 416ee1a commit 1055472
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand All @@ -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';
}
);
});

0 comments on commit 1055472

Please sign in to comment.