Skip to content

Commit

Permalink
Fix cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lucanovera committed Jan 17, 2025
1 parent 078f452 commit 88ed0c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clients/admin-ui/src/features/config-wizard/AddSystem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ const AddSystem = () => {
dispatch(setAddSystemsMethod(SystemMethods.MANUAL));
router.push(ADD_SYSTEMS_MANUAL_ROUTE);
}}
data-testid="manual-btn"
>
<CalloutNavCard
title="Add a system"
color={palette.FIDESUI_SANDSTONE}
icon={<ManualSetupIcon boxSize={6} />}
description="Manually add a system for services not covered by automated scanners"
data-testid="manual-btn"
/>
</button>
<button
Expand All @@ -101,13 +101,13 @@ const AddSystem = () => {
onOpen();
}
}}
data-testid="multiple-btn"
>
<CalloutNavCard
title="Add multiple systems"
color={palette.FIDESUI_OLIVE}
icon={<ManualSetupIcon boxSize={6} />}
description="Choose vendors and automatically populate system details"
data-testid="multiple-btn"
/>
</button>
</SimpleGrid>
Expand All @@ -124,13 +124,13 @@ const AddSystem = () => {
dispatch(setAddSystemsMethod(ValidTargets.AWS));
dispatch(changeStep());
}}
data-testid="aws-btn"
>
<CalloutNavCard
title="Scan your infrastructure (AWS)"
color={palette.FIDESUI_TERRACOTTA}
description="Automatically discover new systems in your AWS infrastructure"
icon={<AWSLogoIcon boxSize={6} />}
data-testid="aws-btn"
/>
</button>
<button
Expand All @@ -141,13 +141,13 @@ const AddSystem = () => {
dispatch(setAddSystemsMethod(ValidTargets.OKTA));
dispatch(changeStep());
}}
data-testid="okta-btn"
>
<CalloutNavCard
title="Scan your Sign On Provider (Okta)"
color={palette.FIDESUI_MINOS}
description="Automatically discover new systems in your Okta infrastructure"
icon={<OktaLogoIcon boxSize={6} />}
data-testid="okta-btn"
/>
</button>
<DataFlowScannerOption
Expand Down

0 comments on commit 88ed0c9

Please sign in to comment.