Skip to content

Commit 90a1b26

Browse files
committed
test(NODE-3777): check topology filter on evg
1 parent 1e19b5b commit 90a1b26

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/tools/runner/filters/mongodb_topology_filter.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class MongoDBTopologyFilter {
2020
}
2121

2222
filter(test) {
23+
console.log(test);
2324
if (!test.metadata) return true;
2425
if (!test.metadata.requires) return true;
2526
if (!test.metadata.requires.topology) return true;
@@ -39,6 +40,7 @@ class MongoDBTopologyFilter {
3940
);
4041
}
4142

43+
console.log(this.runtimeTopology, topologies);
4244
const isExclusion = topologies[0][0] === '!';
4345
if (isExclusion) {
4446
if (!topologies.every(topology => topology.startsWith('!'))) {

0 commit comments

Comments
 (0)