Skip to content

Commit 28f7b79

Browse files
committed
refactor: reduce max test repair attempts to 0
See context: angular#69. We just accidentally increased back to `1` during the refactoring.
1 parent 0b72844 commit 28f7b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runner/configuration/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const DEFAULT_MAX_BUILD_REPAIR_ATTEMPTS = 1;
3131
* Number of times we'll try to ask LLM to repair test failures
3232
* E.g. Axe violations, or test command failures
3333
*/
34-
export const DEFAULT_MAX_TEST_REPAIR_ATTEMPTS = 1;
34+
export const DEFAULT_MAX_TEST_REPAIR_ATTEMPTS = 0;
3535

3636
/** Name of the folder where we store all generated reports */
3737
export const REPORTS_ROOT_DIR = join(rootDir, 'reports');

0 commit comments

Comments
 (0)