Skip to content

Commit

Permalink
chore: add datatestid to the integration tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
thegentlemanphysicist committed Jun 18, 2024
1 parent 9ef4caa commit 06e2f93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/page-partials/my-dashboard/IntegrationInfoTabs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ const getApprovalProgressTab = ({
approvalContext: ApprovalContext;
}) => {
return (
<Tab key={TAB_DETAILS} tab="Technical Details">
<Tab key={TAB_DETAILS} tab="Technical Details" data-testid="technical-details-tab">
<TabWrapper short={false}>
<Grid cols={15}>
<Grid.Row gutter={[]}>
Expand All @@ -219,7 +219,7 @@ const getApprovalProgressTab = ({

const getRoleManagementTab = ({ integration }: { integration: Integration }) => {
return (
<Tab key={TAB_ROLE_MANAGEMENT} tab="Role Management">
<Tab key={TAB_ROLE_MANAGEMENT} tab="Role Management" data-testid="role-management-tab">
<TabWrapper>
<br />
<div>
Expand All @@ -237,7 +237,7 @@ const getRoleManagementTab = ({ integration }: { integration: Integration }) =>

const getUserAssignmentTab = ({ integration }: { integration: Integration }) => {
return (
<Tab key={TAB_USER_ROLE_MANAGEMENT} tab="Assign Users to Roles">
<Tab key={TAB_USER_ROLE_MANAGEMENT} tab="Assign Users to Roles" data-testid="assign-users-to-roles-tab">
<TabWrapper>
<UserRoles selectedRequest={integration} />
</TabWrapper>
Expand Down

0 comments on commit 06e2f93

Please sign in to comment.