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 20aebb8 commit ec18151Copy full SHA for ec18151
test/unit/mongo_client.test.js
@@ -843,17 +843,6 @@ describe('MongoOptions', function () {
843
});
844
845
846
- context('when option is a Writable stream', function () {
847
- it('it is accessible through mongoLogger.logDestination', function () {
848
- const writable = new Writable();
849
- const client = new MongoClient('mongodb://a/', {
850
- [loggerFeatureFlag]: true,
851
- mongodbLogPath: writable
852
- });
853
- expect(client.options.mongoLoggerOptions.logDestination).to.deep.equal(writable);
854
855
856
-
857
context('when option is a MongoDBLogWritable stream', function () {
858
it('it is accessible through mongoLogger.logDestination', function () {
859
const writable = {
0 commit comments