Skip to content

Commit

Permalink
style(MongoMemoryServer): remove unused variable isRunning (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
AJRdev authored and nodkz committed Dec 12, 2018
1 parent a72a2f3 commit 0d7fa05
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/MongoMemoryServer.d.ts
Expand Up @@ -29,7 +29,6 @@ export interface MongoInstanceDataT {
}

export default class MongoMemoryServer {
isRunning: boolean;
runningInstance: Promise<MongoInstanceDataT> | undefined;
opts: MongoMemoryServerOptsT;
debug: DebugFn;
Expand Down
1 change: 0 additions & 1 deletion src/MongoMemoryServer.js
Expand Up @@ -45,7 +45,6 @@ async function generateConnectionString(port: number, dbName: string): Promise<s
}

export default class MongoMemoryServer {
isRunning: boolean = false;
runningInstance: ?Promise<MongoInstanceDataT>;
opts: MongoMemoryServerOptsT;
debug: DebugFn;
Expand Down

0 comments on commit 0d7fa05

Please sign in to comment.