Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
paula-stacho committed Jul 15, 2024
1 parent 5d7e1ff commit 742ae71
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/compass-connection-import-export/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
"@mongodb-js/compass-components": "^1.27.0",
"@mongodb-js/compass-connections": "^1.35.0",
"@mongodb-js/connection-storage": "^0.15.0",
"@mongodb-js/compass-telemetry": "^1.1.0",
"compass-preferences-model": "^2.24.0",
"hadron-ipc": "^3.2.17",
"react": "^17.0.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import { ConnectionStorageProvider } from '@mongodb-js/connection-storage/provid
import {
ConnectionsManager,
ConnectionsManagerProvider,
ConnectionStatus,
useConnectionRepository,
} from '@mongodb-js/compass-connections/provider';
import { createSandboxFromDefaultPreferences } from 'compass-preferences-model';
Expand Down
3 changes: 2 additions & 1 deletion packages/compass/src/app/utils/telemetry.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const connectionInfo: ConnectionInfo = {
connectionString: 'mongodb://localhost:27017',
},
favorite: {
name: 'localhost',
color: 'color_2',
},
};
Expand Down Expand Up @@ -950,7 +951,7 @@ describe('connection tracking', function () {
connection_id: 'TEST',
active_connections_count: activeInactiveConnectionsCount.active,
inactive_connections_count: activeInactiveConnectionsCount.inactive,
color: connectionInfo.favorite.color,
color: connectionInfo.favorite?.color,
};

expect(event).to.equal('Connection Created');
Expand Down

0 comments on commit 742ae71

Please sign in to comment.