Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Render informational result correctly #551

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions framework/python/src/common/testreport.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,8 @@ def generate_result(self, result):
result_class = 'result-test-result-error'
elif result['result'] == 'Feature Not Detected':
result_class = 'result-test-result-feature-not-detected'
elif result['result'] == 'Informational':
result_class = 'result-test-result-informational'
else:
result_class = 'result-test-result-skipped'

Expand Down Expand Up @@ -1018,7 +1020,7 @@ def generate_css(self):

.result-test-result-feature-not-detected {
background-color: #e3e3e3;
left: 6.92in;
left: 6.85in;
}

.result-test-result-informational {
Expand All @@ -1030,7 +1032,7 @@ def generate_css(self):
.result-test-result-non-compliant {
background-color: #FCE8E6;
color: #C5221F;
left: 7.04in;
left: 7.01in;
}

.result-test-result {
Expand Down
Loading