
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
10 lines
168 B
Plaintext
10 lines
168 B
Plaintext
[source,javascript]
|
|
----
|
|
function getReadableStatus(job) {
|
|
if (job.isRunning()) {
|
|
return "Running";
|
|
}
|
|
return job.hasErrors() ? "Failed" : "Succeeded";
|
|
}
|
|
----
|