more lint

This commit is contained in:
Simon Knott 2025-02-07 16:00:51 +01:00
parent de7ea481cd
commit 45cab35a9d
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -28,19 +28,21 @@ export function fixTestPrompt(error: string, diff?: string, pageSnapshot?: strin
'\n',
];
if (pageSnapshot)
if (pageSnapshot) {
promptParts.push(
'This is how the page looked at the end of the test:',
pageSnapshot,
'\n'
);
}
if (diff)
if (diff) {
promptParts.push(
'And this is the code diff:',
diff,
'\n'
);
}
return promptParts.join('\n');
}