9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
/*
|
|
* Test that sessions on mongods cannot be resumed by deleted and recreated user.
|
|
*/
|
|
import {runTest} from "jstests/auth/deleted_recreated_user_base.js";
|
|
|
|
const mongod = MongoRunner.runMongod({auth: ""});
|
|
runTest(mongod, mongod);
|
|
MongoRunner.stopMongod(mongod);
|