Junit Test Results not dispayed correctly

I’m using selenium, testng and surefire plugin to create my reports,

on the post section my circle.yml file looks like this

post:
    - mkdir -p $CIRCLE_TEST_REPORTS/junit/
    - find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;

On the test summary tab it only shows the following information

Your build ran 9 tests in junit with 0 failuresSlowest test: Login.LoginTest ExecuteLoginValidCredentialsTest (took 13.23 seconds).

I would like to see the list of executed tests. Am I doing something wrong?

Your build ran 9 tests in junit with 0 failuresSlowest test: Login.LoginTest ExecuteLoginValidCredentialsTest (took 13.23 seconds).

That is the test summary. If your build passes this is all you will see. If your builds fail you will see a list of all failing tests.

I would like to see the list of executed tests. Am I doing something wrong?

This is not really the purpose of the test summary section and is not currently supported.