mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-01 02:45:22 -08:00
Include group name in error annotations
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user