Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
aggregation fixes
  • Loading branch information
mabaasit committed Dec 10, 2025
commit a55cd5551a889f9083d5577bec0e5c93f186c144
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ function createStore({
dataService: {} as any,
connectionInfoRef,
connectionScopedAppRegistry,
collection: {
fetchMetadata() {
return Promise.resolve({ isFLE: false });
},
} as any,
})
)
);
Expand Down
1 change: 1 addition & 0 deletions packages/compass-aggregations/test/configure-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ function getMockedPluginArgs(
CompassAggregationsPlugin.provider.withMockServices({
atlasAiService,
collection: {
fetchMetadata: () => ({}),
toJSON: () => ({}),
on: () => {},
removeListener: () => {},
Expand Down
Loading