Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 7d3c057

Browse files
kvwalkermbroadst
authored andcommitted
fix(test): do not check deep equality when test.auth.db is null
1 parent 345e6af commit 7d3c057

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/tests/unit/connection_string_spec_tests.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,14 @@ describe('Connection String (spec)', function() {
8989
});
9090

9191
expect(result.hosts).to.containSubset(test.hosts);
92-
expect(result.auth).to.eql(test.auth);
92+
if (test.auth) {
93+
if (test.auth.db !== null) {
94+
expect(result.auth).to.eql(test.auth);
95+
} else {
96+
expect(result.auth.username).to.eql(test.auth.username);
97+
expect(result.auth.password).to.eql(test.auth.password);
98+
}
99+
}
93100
expect(result.options).to.eql(test.options);
94101
}
95102

0 commit comments

Comments
 (0)