Skip to content

Commit

Permalink
testid
Browse files Browse the repository at this point in the history
  • Loading branch information
EliFrankel committed Feb 8, 2024
1 parent c74d965 commit 260decd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const StopPointsViewer = ({ goBackToAddressSelector }: StopPointsViewerProps) =>
</StreetAddress>
</StreetAddressContainer>
<TouchableOpacity
testID="editIcon"
onPress={() => goBackToAddressSelector(requestStopPoints.length - 1)}
>
<SvgIcon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const BottomSheetInputField = forwardRef((props, ref) => (

{ props.onDrag && (
<DragTouchableIconContainer
testID={`DragIconContainer_${props.index}`}
onPressIn={() => props.onDrag()}
onPressOut={() => props.onEndDrag()}
>
Expand All @@ -83,7 +84,7 @@ const BottomSheetInputField = forwardRef((props, ref) => (

{ props.remove && (
<TouchableIconContainer width={30} marginLeft={15} onPress={() => props.remove()}>
<RemoveIconContainer>
<RemoveIconContainer testID={`removeIcon_${props.index}`}>
<SvgIcon
Svg={deleteIcon}
stroke="#333"
Expand Down

0 comments on commit 260decd

Please sign in to comment.