Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I list all tests using `mix test`

Is there a command-line invocation I can used in conjunction with mix that will output all test names without running the tests?

like image 865
Michael Bishop Avatar asked Sep 28 '16 16:09

Michael Bishop


1 Answers

mix test --trace .

Found in the mix test help page

EDIT: Didn't see the bit saying 'without running the tests', but I thought it might be helpful

like image 147
Dylanthepiguy Avatar answered Oct 13 '22 14:10

Dylanthepiguy