Added a details page for test results; added an API route for removing test results

This commit is contained in:
2025-08-01 17:21:03 -04:00
parent 078edf5ab0
commit 32632b2303
7 changed files with 80 additions and 0 deletions

View File

@ -53,6 +53,8 @@ fetchTestBenchmarkResults = (testId, benchmarkId) ->
else
tableRow.append('<td>N/a</td>')
tableRow.append('<td>N/a</td>')
tableRow.append('<td><a href="/test/' + testId + '/results">Details</a></td>')
catch error
console.error 'An error occurred while fetching benchmark results.', error

View File

@ -22,6 +22,10 @@ table{
border: 1px solid #eee;
}
a{
transition: color 210ms ease-in-out;
}
#main-wrapper{
padding: 1.5rem 2rem;
background: white;