Files
mongo/jstests/auth/bulk_write_sharded_cluster.js
Matt Broadstone 771dabd098 SERVER-81339 Convert ReplSetTest and ShardingTest to modules (#26332)
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
2024-08-20 22:00:49 +00:00

15 lines
380 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();