added additional tests from #187.

Detected that the frontend was incorrectly classifying Scrutiny Failures as Warnings.

Fixed.
This commit is contained in:
Jason Kulatunga
2022-05-12 10:04:06 -07:00
parent 7b75b5f9bb
commit e7801619cd
5 changed files with 1337 additions and 2 deletions
@@ -111,9 +111,9 @@ export class DetailComponent implements OnInit, AfterViewInit, OnDestroy {
if(attribute_status == 0){
return "passed"
} else if (attribute_status == 1){
return "warn"
} else if (attribute_status == 2){
return "failed"
} else if (attribute_status == 2){
return "warn"
}
return
}