File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
TestResultSummaryService/routes
test-result-summary-client/src/Build Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ app.get('/getFeedbackUrl', require('./getFeedbackUrl'));
5151app . get ( '/rescanBuild' , require ( './rescanBuild' ) ) ;
5252app . get ( '/testParserViaFile' , require ( './test/testParserViaFile' ) ) ;
5353app . get ( '/testParserViaLogStream' , require ( './test/testParserViaLogStream' ) ) ;
54- app . get ( '/getRerunDetails' , wrap ( require ( './getRerunDetails' ) ) ) ;
55- app . get ( '/getJobsDetails' , wrap ( require ( './getJobsDetails' ) ) ) ;
56- app . get ( '/GetFailedTestByMachine' , wrap ( require ( './GetFailedTestByMachine' ) ) ) ;
54+ app . get ( '/getRerunDetails' , require ( './getRerunDetails' ) ) ;
55+ app . get ( '/getJobsDetails' , require ( './getJobsDetails' ) ) ;
56+ app . get ( '/GetFailedTestByMachine' , require ( './GetFailedTestByMachine' ) ) ;
5757
5858app . get ( '/updateComments' , require ( './updateComments' ) ) ;
5959app . get ( '/updateKeepForever' , require ( './updateKeepForever' ) ) ;
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ const Build = () => {
9393 const buildsRes = fetchData (
9494 `/api/getAllTestsWithHistory?buildId=${ buildId } ${ limitParam } `
9595 ) ;
96+
9697 const buildDataRes = fetchData ( `/api/getData?_id=${ buildId } ` ) ;
9798 const [ builds , buildData ] = await Promise . all ( [
9899 buildsRes ,
You can’t perform that action at this time.
0 commit comments