We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e19b5b commit 90a1b26Copy full SHA for 90a1b26
test/tools/runner/filters/mongodb_topology_filter.js
@@ -20,6 +20,7 @@ class MongoDBTopologyFilter {
20
}
21
22
filter(test) {
23
+ console.log(test);
24
if (!test.metadata) return true;
25
if (!test.metadata.requires) return true;
26
if (!test.metadata.requires.topology) return true;
@@ -39,6 +40,7 @@ class MongoDBTopologyFilter {
39
40
);
41
42
43
+ console.log(this.runtimeTopology, topologies);
44
const isExclusion = topologies[0][0] === '!';
45
if (isExclusion) {
46
if (!topologies.every(topology => topology.startsWith('!'))) {
0 commit comments