Skip to content

Commit 080b6d3

Browse files
committed
chore: remove all atlas sign in
1 parent d1c1078 commit 080b6d3

File tree

23 files changed

+7
-1830
lines changed

23 files changed

+7
-1830
lines changed

docs/security-test-summary.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ including the specific instances listed below.
77

88
# Security Tests
99

10-
## Atlas Login Integration Tests
11-
12-
The Atlas Login feature is thoroughly tested, including proper authentication token
13-
handling and credential revocation upon signout.
14-
1510
<!-- Source File: `packages/atlas-service/src/main.spec.ts` -->
1611

1712
## Connection Import / Export Testing

docs/tracking-plan.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ Generated on Mon, Sep 1, 2025
133133
- [Assistant Entry Point Used](#event--AssistantEntryPointUsedEvent)
134134
- [AI Opt In Modal Shown](#event--AiOptInModalShownEvent)
135135
- [AI Opt In Modal Dismissed](#event--AiOptInModalDismissedEvent)
136-
- [AI Sign In Modal Shown](#event--AiSignInModalShownEvent)
137-
- [AI Sign In Modal Dismissed](#event--AiSignInModalDismissedEvent)
138136
- [AI Generate Query Clicked](#event--AiGenerateQueryClickedEvent)
139137
- [AI Prompt Submitted](#event--AiPromptSubmittedEvent)
140138
- [AI Query Feedback](#event--AiQueryFeedbackEvent)
@@ -1483,18 +1481,6 @@ This event is fired when the AI Opt-In Modal is shown to the user.
14831481

14841482
This event is fired when the AI Opt-In Modal is dismissed by the user.
14851483

1486-
<a name="event--AiSignInModalShownEvent"></a>
1487-
1488-
### AI Sign In Modal Shown
1489-
1490-
This event is fired when the AI Sign-In Modal is shown to the user.
1491-
1492-
<a name="event--AiSignInModalDismissedEvent"></a>
1493-
1494-
### AI Sign In Modal Dismissed
1495-
1496-
This event is fired when the AI Sign-In Modal is dismissed by the user.
1497-
14981484
<a name="event--AiGenerateQueryClickedEvent"></a>
14991485

15001486
### AI Generate Query Clicked

packages/compass-aggregations/src/modules/pipeline-builder/pipeline-ai.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ export const resetIsAggregationGeneratedFromQuery =
449449
export const showInput = (): PipelineBuilderThunkAction<Promise<void>> => {
450450
return async (dispatch, _getState, { atlasAiService }) => {
451451
try {
452-
if (process.env.COMPASS_E2E_SKIP_ATLAS_SIGNIN !== 'true') {
452+
if (process.env.COMPASS_E2E_SKIP_AI_OPT_IN !== 'true') {
453453
await atlasAiService.ensureAiFeatureAccess();
454454
}
455455
dispatch({

packages/compass-e2e-tests/helpers/selectors.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1392,14 +1392,6 @@ export const ModifySourceBanner = '[data-testid="modify-source-banner"]';
13921392
export const InsightIconButton = '[data-testid="insight-badge-button"]';
13931393
export const InsightPopoverCard = '[data-testid="insight-signal-card"]';
13941394

1395-
// Atlas login
1396-
export const LogInWithAtlasButton = 'button=Log in with Atlas';
1397-
export const LogInWithAtlasModalButton = 'button*=Log in to Atlas';
1398-
export const DisconnectAtlasAccountButton = 'button=Log Out';
1399-
export const AtlasLoginStatus = '[data-testid="atlas-login-status"]';
1400-
export const AtlasLoginErrorToast = '#atlas-sign-in-error';
1401-
export const AgreeAndContinueButton = 'button=Agree and continue';
1402-
14031395
// Proxy settings
14041396
export const ProxyUrl =
14051397
'[data-testid="proxy-settings"] [data-testid="proxy-url"]';

0 commit comments

Comments
 (0)