DEV Community

Discussion on: What does "-R min" flag means in my test script in package.json?

Collapse
 
weswedding profile image
Weston Wedding • Edited

That usually means "recursive" in command-line speak so I initially thought that was what it was, but in this case you are specifying the "reporter"

mochajs.org/#reporters

So it's

mocha -R <reporter>

Collapse
 
jjjjcccjjf profile image
endan

Thank you!!!!