Skip to content
Merged
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
clean up
  • Loading branch information
mabaasit committed Dec 15, 2025
commit a2c43233345d640d5464fe0ee1dd944678d3b148
16 changes: 2 additions & 14 deletions packages/compass-generative-ai/src/atlas-ai-service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,9 @@ describe('AtlasAiService', function () {
global.fetch = initialFetch;
});

const endpointBasepathTests = [
{
apiURLPreset: 'admin-api',
expectedEndpoints: {},
},
{
apiURLPreset: 'cloud',
expectedEndpoints: {
'mock-data-schema':
'/cloud/ai/v1/groups/testProject/mock-data-schema?request_id=abc',
},
},
] as const;
const endpointBasepathTests = ['admin-api', 'cloud'] as const;

for (const { apiURLPreset } of endpointBasepathTests) {
for (const apiURLPreset of endpointBasepathTests) {
const describeName =
apiURLPreset === 'admin-api'
? 'connection WITHOUT atlas metadata'
Expand Down
Loading