mirror of https://github.com/mongodb/mongo
11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
/**
|
|
* @tags: [requires_sharding]
|
|
*/
|
|
|
|
import {runAllUserManagementCommandsTests} from "jstests/auth/user_management_commands_lib.js";
|
|
import {ShardingTest} from "jstests/libs/shardingtest.js";
|
|
|
|
let st = new ShardingTest({shards: 2, config: 3, keyFile: "jstests/libs/key1"});
|
|
runAllUserManagementCommandsTests(st.s, {w: 1});
|
|
st.stop();
|