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 8020c5a commit 38b2f0dCopy full SHA for 38b2f0d
packages/mongodb-memory-server-core/src/util/MongoInstance.ts
@@ -119,11 +119,11 @@ export default class MongoInstance {
119
const launch = new Promise((resolve, reject) => {
120
this.instanceReady = () => {
121
this.isInstanceReady = true;
122
- this.debug('MongodbInstance: is ready!');
+ this.debug('MongodbInstance: Instance is ready!');
123
resolve({ ...this.childProcess });
124
};
125
this.instanceFailed = (err: any) => {
126
- this.debug(`MongodbInstance: is failed: ${err.toString()}`);
+ this.debug(`MongodbInstance: Instance has failed: ${err.toString()}`);
127
if (this.killerProcess) {
128
this.killerProcess.kill();
129
}
0 commit comments