We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The output of a test suite starting when using the json formatter represents "test_count" as a json string, like so:
{ "type": "suite", "event": "started", "test_count": "1" }
I would expect it to be a number like this:
{ "type": "suite", "event": "started", "test_count": 1 }