Skip to content

Commit f93916d

Browse files
committed
make prettier
1 parent aa814c3 commit f93916d

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

src/testResultsSummary.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,24 @@ export interface TestResultsData {
6868
OverallStats: TestStatistics;
6969
}
7070

71-
export function processAndAddTestSummary(runnerTemp: string, runId: string, actionName: string, workspace: string) {
71+
export function processAndAddTestSummary(
72+
runnerTemp: string,
73+
runId: string,
74+
actionName: string,
75+
workspace: string,
76+
) {
7277
const testResultsData = getTestResults(runnerTemp, actionName, workspace);
7378
const coverageResultsData = getCoverageResults(runnerTemp, runId);
7479
if (testResultsData || coverageResultsData) {
7580
addSummary(testResultsData, coverageResultsData);
7681
}
7782
}
7883

79-
export function getTestResults(runnerTemp: string, actionName: string, workspace: string): TestResultsData | null {
84+
export function getTestResults(
85+
runnerTemp: string,
86+
actionName: string,
87+
workspace: string,
88+
): TestResultsData | null {
8089
let testResultsData = null;
8190
const filePrefix = `matlabTestResults${actionName}_`;
8291
const fileSuffix = `.json`;

0 commit comments

Comments
 (0)