Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private async Task<int> CreateFakeTestResultAsync(HttpClient client, string test
["testCaseTitle"] = $"{workItemFriendlyName} Work Item",
["outcome"] = failed ? "Failed" : "Passed",
["state"] = "Completed",
["errorMessage"] = failed ? "The Helix Work Item failed. Often this is due to a test crash or infrastructure failure. See the Helix Test Logs tab in the Results page of Azure DevOps." : null,
["errorMessage"] = failed ? "The Helix Work Item failed. Often this is due to a test crash. Please see the 'Artifacts' tab above for additional logs." : null,
["durationInMs"] = 60 * 1000, // Use a non-zero duration so that the graphs look better.
["comment"] = new JObject
{
Expand Down