mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 16:46:00 +01:00
771dabd098
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
10 lines
335 B
JavaScript
10 lines
335 B
JavaScript
/**
|
|
* @tags: [requires_sharding]
|
|
*/
|
|
|
|
import {runAllUserManagementCommandsTests} from "jstests/auth/user_management_commands_lib.js";
|
|
import {ShardingTest} from "jstests/libs/shardingtest.js";
|
|
|
|
var st = new ShardingTest({shards: 2, config: 3, keyFile: 'jstests/libs/key1'});
|
|
runAllUserManagementCommandsTests(st.s, {w: 1});
|
|
st.stop(); |