Skip to content

Commit 06a7ea8

Browse files
committed
chore: js prefers strict equality
1 parent ece4d6c commit 06a7ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class Session extends EventEmitter<SessionEvents> {
116116
}
117117

118118
isConnectedToMongoDB(): boolean {
119-
return this.connectionManager.currentConnectionState.tag == "connected";
119+
return this.connectionManager.currentConnectionState.tag === "connected";
120120
}
121121

122122
get serviceProvider(): NodeDriverServiceProvider {

0 commit comments

Comments
 (0)