Skip to content

Commit 3dc603d

Browse files
committed
showing stop on error on the result page
1 parent d85663e commit 3dc603d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

frontend/src/ts/test/result.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,9 @@ function updateTestType(randomQuote: MonkeyTypes.Quote): void {
568568
} else if (Config.difficulty == "master") {
569569
testType += "<br>master";
570570
}
571+
if (Config.stopOnError !== "off") {
572+
testType += `<br>stop on ${Config.stopOnError}`;
573+
}
571574

572575
$("#result .stats .testType .bottom").html(testType);
573576
}

0 commit comments

Comments
 (0)