We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60858b1 commit d749abbCopy full SHA for d749abb
packages/mongodb-memory-server-core/src/util/MongoInstance.ts
@@ -27,7 +27,10 @@ export interface MongoMemoryInstanceOptsBase {
27
export interface MongoMemoryInstanceOpts extends MongoMemoryInstanceOptsBase {
28
auth?: boolean;
29
dbName?: string;
30
- ip?: string; // for binding to all IP addresses set it to `::,0.0.0.0`, by default '127.0.0.1'
+ /**
31
+ * for binding to all IP addresses set it to `::,0.0.0.0`, by default '127.0.0.1'
32
+ */
33
+ ip?: string;
34
replSet?: string;
35
storageEngine?: StorageEngine;
36
}
0 commit comments