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
allow headers for cors in tests
  • Loading branch information
mabaasit committed Dec 15, 2025
commit e7786c2a0b44c6a077f90345786a1b61d94a51bb
2 changes: 1 addition & 1 deletion packages/compass-e2e-tests/helpers/assistant-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export async function startMockAssistantServer(
res.setHeader('Access-Control-Allow-Methods', 'POST, OPTIONS');
res.setHeader(
'Access-Control-Allow-Headers',
'Content-Type, Authorization, X-Request-Origin, User-Agent, X-CSRF-Token, X-CSRF-Time'
'Content-Type, Authorization, X-Request-Origin, User-Agent, X-CSRF-Token, X-CSRF-Time, Entrypoint, X-Client-Request-Id'
);
res.setHeader('Access-Control-Allow-Credentials', 'true');

Expand Down
Loading