I.e. for this piece of code: ``` class Test : Free...
# kotlintest
s
I.e. for this piece of code:
Copy code
class Test : FreeSpec({
    "GIVEN some precondition" - {
        // something  

        "WHEN some action" - {
            // something  

            "THEN assert" {
                // something                
            }
        }
    }
})
I will only have the
THEN
part in the report.