Skip to content

Commit 03c34a0

Browse files
unskip tests that use legacy 'count' functionality
1 parent d7dba6c commit 03c34a0

File tree

4 files changed

+1
-11
lines changed

4 files changed

+1
-11
lines changed

test/integration/client-side-encryption/client_side_encryption.spec.test.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ describe('Client Side Encryption', function () {
3535
});
3636

3737
generateTopologyTests(testSuites, testContext, spec => {
38-
return (
39-
!spec.description.match(/type=symbol/) &&
40-
!spec.description.match(/maxWireVersion < 8/) &&
41-
!spec.description.match(/Count with deterministic encryption/) // TODO(NODE-3369): Unskip
42-
);
38+
return !spec.description.match(/type=symbol/) && !spec.description.match(/maxWireVersion < 8/);
4339
});
4440
});

test/integration/command-monitoring/command_monitoring.spec.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ describe('Command Monitoring spec tests', function () {
240240
}
241241

242242
loadSpecTests('command-monitoring/legacy').forEach(scenario => {
243-
if (scenario.name === 'command') return; // TODO(NODE-3369): remove when `count` spec tests have been fixed
244243
describe(scenario.name, function () {
245244
scenario.tests.forEach(test => {
246245
const requirements = { topology: ['single', 'replicaset', 'sharded'] };

test/integration/retryable-reads/retryable_reads.spec.test.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ describe('Retryable Reads', function () {
2323
spec.description.match(/listCollections/i) ||
2424
spec.description.match(/listCollectionNames/i) ||
2525
spec.description.match(/estimatedDocumentCount/i) ||
26-
// FIXME(NODE-3369): uncomment when `count` spec tests have been fixed
27-
// spec.description.match(/count/i) ||
2826
spec.description.match(/find/i)
2927
);
3028
});

test/integration/transactions/transactions.spec.test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,6 @@ const SKIP_TESTS = [
8888
'commitTransaction retry fails on new mongos',
8989
'unpin after transient error within a transaction and commit',
9090

91-
// TODO(NODE-3369): unskip count tests when spec tests have been updated
92-
'count',
93-
9491
// TODO(NODE-2034): Will be implemented as part of NODE-2034
9592
'Client side error in command starting transaction',
9693
'Client side error when transaction is in progress'

0 commit comments

Comments
 (0)