Wizard: Return of the testid

This adds `data-testid` back to the blueprint name input.
This commit is contained in:
regexowl 2025-03-12 11:58:29 +01:00 committed by Klara Simickova
parent 12aa5cdf52
commit e21d09b909
2 changed files with 6 additions and 1 deletions

View file

@ -16,7 +16,7 @@ import { EyeIcon, EyeSlashIcon } from '@patternfly/react-icons';
import type { StepValidation } from './utilities/useValidation';
type ValidatedTextInputPropTypes = TextInputProps & {
dataTestId?: string | undefined;
dataTestId?: string;
ouiaId?: string;
ariaLabel: string | undefined;
helperText: string | undefined;
@ -43,6 +43,7 @@ type ValidationInputProp = TextInputProps &
value: string;
placeholder: string;
stepValidation: StepValidation;
dataTestId?: string;
fieldName: string;
inputType?: 'textInput' | 'textArea';
ariaLabel: string;
@ -115,6 +116,7 @@ export const ValidatedInputAndTextArea = ({
stepValidation,
fieldName,
placeholder,
dataTestId,
onChange,
ariaLabel,
inputType = 'textInput',
@ -148,6 +150,7 @@ export const ValidatedInputAndTextArea = ({
onBlur={handleBlur}
placeholder={placeholder}
aria-label={ariaLabel}
data-testid={dataTestId}
/>
) : (
<TextInput
@ -157,6 +160,7 @@ export const ValidatedInputAndTextArea = ({
onBlur={handleBlur}
placeholder={placeholder}
aria-label={ariaLabel}
data-testid={dataTestId}
/>
)}
{hasError && <ErrorMessage errorMessage={errorMessage} />}

View file

@ -60,6 +60,7 @@ const DetailsStep = () => {
<FormGroup isRequired label="Blueprint name" fieldId="blueprint-name">
<ValidatedInputAndTextArea
ariaLabel="blueprint name"
dataTestId="blueprint"
value={blueprintName}
isDisabled={false}
onChange={handleNameChange}