14 lines
376 B
JavaScript
14 lines
376 B
JavaScript
/*
|
|
* Auth test for the bulkWrite command on sharded clusters.
|
|
* @tags: [
|
|
* requires_sharding,
|
|
* requires_fcv_80
|
|
* ]
|
|
*/
|
|
import {runTest} from "jstests/auth/lib/bulk_write_base.js";
|
|
import {ShardingTest} from "jstests/libs/shardingtest.js";
|
|
|
|
const st = new ShardingTest({shards: 1, mongos: 1, config: 1, other: {keyFile: "jstests/libs/key1"}});
|
|
runTest(st.s0);
|
|
st.stop();
|