We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to capture the reasons for test failure in the report.xml? e.g. testify/assert failures
For example, I want to see all assert errors in the report:
expect2 := fmt.Sprintf("Hello foo %s", uniquePrefix) assert.Equal(t, expect2, output)
go test log
my_test.go:197: Error Trace: ...my_test.go:59 Error: Not equal: expected: "Hello foo Bef0Ag" actual : "Hello Bef0Ag" Diff: --- Expected +++ Actual @@ -1 +1 @@ -Hello foo Bef0Ag +Hello Bef0Ag Test: TestHelloWorld
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there a way to capture the reasons for test failure in the report.xml?
e.g. testify/assert failures
For example, I want to see all assert errors in the report:
go test log
The text was updated successfully, but these errors were encountered: