website: Add e2e tests of creating an assistant/prompter reply

These are intended to function as a minimal smoke test that the API interaction with the backend is functional.
This commit is contained in:
Adrian Cowan
2023-01-02 17:59:03 +11:00
parent 0df6d7fd31
commit 32e212b5a5
5 changed files with 67 additions and 7 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ export const TaskInfo = ({ id, output }: { id: string; output: string }) => {
return (
<div className="grid grid-cols-[min-content_auto] gap-x-2 text-gray-700">
<b>Prompt</b>
<span>{id}</span>
<span data-cy="task-id">{id}</span>
<b>Output</b>
<span>{output}</span>
</div>