We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 382d572 commit 504b596Copy full SHA for 504b596
packages/compass-sidebar/src/components/use-filtered-connections.spec.ts
@@ -7,7 +7,7 @@ import {
7
ConnectionsManager,
8
ConnectionsManagerProvider,
9
} from '@mongodb-js/compass-connections/provider';
10
-import { createNoopLoggerAndTelemetry } from '@mongodb-js/compass-logging/provider';
+import { createNoopLogger } from '@mongodb-js/compass-logging/provider';
11
import type {
12
SidebarConnectedConnection,
13
SidebarConnection,
@@ -121,7 +121,7 @@ describe('useFilteredConnections', function () {
121
const fetchAllCollectionsStub = Sinon.stub();
122
const onDatabaseExpandStub = Sinon.stub();
123
const connectionsManager = new ConnectionsManager({
124
- logger: createNoopLoggerAndTelemetry().log.unbound,
+ logger: createNoopLogger().log.unbound,
125
});
126
127
const renderHookWithContext: typeof renderHook = (callback, options) => {
0 commit comments