summaryrefslogtreecommitdiff
path: root/jstests/replsets/replsettest_control_1_node.js
blob: 72e5ee04fbc1334f5cb2e473d8c5038aca2bf13b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * This test serves as a baseline for measuring the scalability of the ReplSetTest fixture.
 *
 * It allows us to compare the performance of the setup and teardown procedures of ReplSetTest with
 * a single node against the performance with many nodes, to see how the fixture scales. See the
 * 'replsettest_control_12_nodes.js' test.
 */
(function() {
const replTest = new ReplSetTest({name: 'replsettest_control_1_node', nodes: 1});
replTest.startSet();
replTest.initiate();
replTest.stopSet();
})();