Skip to content

Commit 0358360

Browse files
test(NODE-7394): add test suite that runs with TLS enabled (#4845)
1 parent 840c77b commit 0358360

File tree

28 files changed

+1074
-326
lines changed

28 files changed

+1074
-326
lines changed

.evergreen/ci_matrix_constants.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ const LATEST_LTS = NODE_VERSIONS[NODE_VERSIONS.length - 1];
1010

1111
const TOPOLOGIES = ['server', 'replica_set', 'sharded_cluster'];
1212
const AWS_AUTH_VERSIONS = ['latest'];
13-
const TLS_VERSIONS = ['latest', '8.0', '7.0', '6.0', '5.0', '4.4', '4.2'];
14-
const LB_VERSIONS = MONGODB_VERSIONS.slice(0, MONGODB_VERSIONS.indexOf('5.0') + 1);
15-
LB_VERSIONS.reverse();
13+
const TLS_VERSIONS = MONGODB_VERSIONS.filter(value => value !== 'rapid');
14+
const LB_VERSIONS = MONGODB_VERSIONS.slice(0, MONGODB_VERSIONS.indexOf('5.0') + 1).toReversed();
1615

1716
const DEFAULT_OS = 'rhel80-large';
1817
const WINDOWS_OS = 'windows-2022-latest-large';

0 commit comments

Comments
 (0)