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 4b531d9 commit 3496b4bCopy full SHA for 3496b4b
packages/shell-api/src/shard.spec.ts
@@ -2532,6 +2532,13 @@ describe('Shard', function () {
2532
it('not shown if sh.status() if not explicitly enabled', async function () {
2533
// It might be explicitly set from 7.0
2534
skipIfServerVersion(mongos, '>= 7.0');
2535
+
2536
+ // Ensure no previous automerge settings are present
2537
+ await instanceState.currentDb
2538
+ .getSiblingDB('config')
2539
+ .getCollection('settings')
2540
+ .deleteOne({ _id: 'automerge' });
2541
2542
expect((await sh.status()).value.automerge).is.undefined;
2543
});
2544
describe('from 7.0', function () {
0 commit comments