(o, searchKey)
| 586 | ]; |
| 587 | |
| 588 | const findMatchingKey = (o, searchKey) => { |
| 589 | return Object.keys(o).filter(key => { |
| 590 | return key.toLowerCase() === searchKey; |
| 591 | })[0]; |
| 592 | }; |
| 593 | |
| 594 | it(`should define known defaults in client.options`, () => { |
| 595 | const client = new MongoClient('mongodb://localhost'); |
no test coverage detected