Skip to content

Commit

Permalink
Merge branch 'main' into find-test-by-status
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore authored Jan 30, 2025
2 parents f671a49 + fda5a0e commit 4df056a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion server/views/search.pug
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,13 @@ block content
td.is-capitalized
- let testOnClick = 'addToSearch(\'testType:' + test.test_type + '\')';
a(role='button' onclick=testOnClick title='Add test type to search') #{test.test_type}
td #{test.status}
td
if test.status === 'completed'
span.has-text-success #{test.status}
else if test.status === 'failed'
span.has-text-danger #{test.status}
else
span #{test.status}
td
- let browserOnClick = 'addToSearch(\'browser:' + test.browser_name + '\')';
a(role='button' onclick=browserOnClick title='Add browser to search') #{test.browser_name}
Expand Down

0 comments on commit 4df056a

Please sign in to comment.