mongo/jstests/auth/bulk_write_mongod.js
seanzimm 65b881d228 SERVER-52419 Enable feature flag for bulkWrite (#18965)
GitOrigin-RevId: fbb748674d551c1d1745955f081445c1f28bfd51
2024-02-20 19:05:27 +00:00

12 lines
255 B
JavaScript

/*
* Auth test for the bulkWrite command on mongods.
* @tags: [
* requires_fcv_80
* ]
*/
import {runTest} from "jstests/auth/lib/bulk_write_base.js";
const mongod = MongoRunner.runMongod({auth: ""});
runTest(mongod);
MongoRunner.stopMongod(mongod);