diff --git a/src/report/get-annotations.ts b/src/report/get-annotations.ts index b445ff1..eef244d 100644 --- a/src/report/get-annotations.ts +++ b/src/report/get-annotations.ts @@ -53,7 +53,7 @@ export function getAnnotations(results: TestRunResult[], maxCount: number): Anno errors.push({ testRunPaths: [tr.path], suiteName: ts.name, - testName: tc.name, + testName: tg.name ? `${tg.name} ► ${tc.name}` : tc.name, details: err.details, message: err.message ?? getFirstNonEmptyLine(err.details) ?? 'Test failed', path,