File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 11import { define } from "@/define.ts" ;
22import type {
3- JobTestResults ,
43 RecordedTestResult ,
54 TestResultsDownloader ,
65} from "@/lib/test-results-downloader.ts" ;
@@ -43,7 +42,7 @@ export class InsightsPageController {
4342 . slice ( 0 , 20 ) ;
4443
4544 // Download test results for all runs
46- const allResults = ( await Promise . all ( mainBranchRuns . map ( async run => {
45+ const allResults = ( await Promise . all ( mainBranchRuns . map ( async ( run ) => {
4746 try {
4847 const results = await this . #downloader. downloadForRunId ( run . id ) ;
4948 return { runId : run . id , run, results } ;
@@ -54,7 +53,7 @@ export class InsightsPageController {
5453 ) ;
5554 return undefined ! ;
5655 }
57- } ) ) ) . filter ( r => r != null ) ;
56+ } ) ) ) . filter ( ( r ) => r != null ) ;
5857
5958 // Analyze flaky tests across all runs
6059 const flakyTestsMap = new Map <
You can’t perform that action at this time.
0 commit comments