From 4e0e2222ac0688524bba7e65a28b9b135c9ab1b6 Mon Sep 17 00:00:00 2001 From: Paul Paczuski <6165713+plpxsk@users.noreply.github.com> Date: Fri, 31 Oct 2025 20:06:16 -0400 Subject: [PATCH] Tests: recover missing test elements (#1296) --- components/message-actions.tsx | 1 + components/multimodal-input.tsx | 1 + components/preview-attachment.tsx | 5 ++++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/components/message-actions.tsx b/components/message-actions.tsx index 31cc482..10807b3 100644 --- a/components/message-actions.tsx +++ b/components/message-actions.tsx @@ -52,6 +52,7 @@ export function PureMessageActions({ {setMode && ( setMode("edit")} tooltip="Edit" > diff --git a/components/multimodal-input.tsx b/components/multimodal-input.tsx index a951834..c95527e 100644 --- a/components/multimodal-input.tsx +++ b/components/multimodal-input.tsx @@ -333,6 +333,7 @@ function PureMultimodalInput({ className="size-8 rounded-full bg-primary text-primary-foreground transition-colors duration-200 hover:bg-primary/90 disabled:bg-muted disabled:text-muted-foreground" disabled={!input.trim() || uploadQueue.length > 0} status={status} + data-testid="send-button" > diff --git a/components/preview-attachment.tsx b/components/preview-attachment.tsx index a2d6b07..ade1807 100644 --- a/components/preview-attachment.tsx +++ b/components/preview-attachment.tsx @@ -35,7 +35,10 @@ export const PreviewAttachment = ({ )} {isUploading && ( -
+
)}