The following test: stests/with_mongot/search_mocked/shard_limit_test.js fails as it is unable to find the "stages" field within the explain results for a search query on a sharded cluster.
In the body of the function :
function assertLimitAbsorbed(explainRes, query) {...}
We iterate through the explain results to assert specific conditions. Unfortunately this fails because the "stages" field is not found in the results. For the time being, this method returns early to "disable" the test.
Investigate the failure, and re-enable the test by removing the early return in assertLimitAbsorbed().