From 4302a054cfd73f38a13b73e485edc259dc0c948e Mon Sep 17 00:00:00 2001 From: Christian Vogt Date: Wed, 20 Nov 2024 10:03:58 -0500 Subject: [PATCH] add data-testid to connection form fields --- .../concepts/connectionTypes/fields/ConnectionTypeFormFields.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/concepts/connectionTypes/fields/ConnectionTypeFormFields.tsx b/frontend/src/concepts/connectionTypes/fields/ConnectionTypeFormFields.tsx index 1fbcc0611b..5b0a458eee 100644 --- a/frontend/src/concepts/connectionTypes/fields/ConnectionTypeFormFields.tsx +++ b/frontend/src/concepts/connectionTypes/fields/ConnectionTypeFormFields.tsx @@ -75,6 +75,7 @@ const ConnectionTypeFormFields: React.FC = ({ onChange={onChange ? (v) => onChange(field, v) : undefined} value={connectionValues?.[field.envVar]} onValidate={onValidate ? (e) => onValidate(field, e) : undefined} + data-testid={`field ${field.envVar}`} /> )}