Skip to content

Commit edf63e4

Browse files
W-A-Jamesnbbeeken
authored andcommitted
unskip tests
1 parent f897155 commit edf63e4

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

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

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,13 @@ describe('CSOT spec tests', function () {
2323
for (const spec of specs) {
2424
for (const test of spec.tests) {
2525
// not one of the test suites listed in kickoff
26-
if (!enabled.includes(spec.name)) test.skipReason = 'Not working yet';
26+
if (!enabled.includes(spec.name)) {
27+
test.skipReason = 'TODO(NODE-5684): Not working yet';
28+
}
2729

2830
// Cursor operation
2931
if (test.operations.find(operation => cursorOperations.includes(operation.name)))
30-
test.skipReason = 'Not working yet';
31-
32-
// runCommand only uses options directly passed to it
33-
if (
34-
test.operations.find(
35-
operation => operation.name === 'runCommand' && operation.arguments.timeoutMS == null
36-
)
37-
)
38-
test.skipReason = 'Not working yet';
32+
test.skipReason = 'TODO(NODE-5684): Not working yet';
3933
}
4034
}
4135
runUnifiedSuite(specs);

0 commit comments

Comments
 (0)