more lint
This commit is contained in:
parent
de7ea481cd
commit
45cab35a9d
|
|
@ -28,19 +28,21 @@ export function fixTestPrompt(error: string, diff?: string, pageSnapshot?: strin
|
||||||
'\n',
|
'\n',
|
||||||
];
|
];
|
||||||
|
|
||||||
if (pageSnapshot)
|
if (pageSnapshot) {
|
||||||
promptParts.push(
|
promptParts.push(
|
||||||
'This is how the page looked at the end of the test:',
|
'This is how the page looked at the end of the test:',
|
||||||
pageSnapshot,
|
pageSnapshot,
|
||||||
'\n'
|
'\n'
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (diff)
|
if (diff) {
|
||||||
promptParts.push(
|
promptParts.push(
|
||||||
'And this is the code diff:',
|
'And this is the code diff:',
|
||||||
diff,
|
diff,
|
||||||
'\n'
|
'\n'
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return promptParts.join('\n');
|
return promptParts.join('\n');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue