Skip to content

Commit d13a081

Browse files
committed
format and lint
1 parent 0131c64 commit d13a081

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

routes/insights.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { define } from "@/define.ts";
22
import 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<

0 commit comments

Comments
 (0)