Is there a way to configure mocha when I am using ...
# javascript
r
Is there a way to configure mocha when I am using
kotlin{ js { nodejs() }}
I would like to see more than just the first line in case of a failure in the console
r
There's a config dsl but I don't remember off-hand what options are available Something like
Copy code
js {
        nodejs {
            testTask {
                useMocha {
                    ...
                }
            }
        }
    }
r
thanks for the pointer, going to search in this direction