Skip to content

Commit 1055472

Browse files
committed
chore: add skipReason
1 parent 416ee1a commit 1055472

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/client-side-operations-timeout/client_side_operations_timeout.prose.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ describe('CSOT spec prose tests', function () {
10231023
client = this.configuration.newClient({ timeoutMS: 2000, monitorCommands: true });
10241024
});
10251025

1026-
it('performs two bulkWrites which fail to complete before 2000 ms', async function () {
1026+
it.skip('performs two bulkWrites which fail to complete before 2000 ms', async function () {
10271027
const writes = [];
10281028
client.on('commandStarted', ev => writes.push(ev));
10291029

@@ -1038,7 +1038,7 @@ describe('CSOT spec prose tests', function () {
10381038

10391039
expect(error, error.stack).to.be.instanceOf(MongoOperationTimeoutError);
10401040
expect(writes.map(ev => ev.commandName)).to.deep.equal(['bulkWrite', 'bulkWrite']);
1041-
});
1041+
}).skipReason = 'TODO(NODE-6403): client.bulkWrite is implemented in a follow up';
10421042
}
10431043
);
10441044
});

0 commit comments

Comments
 (0)