I am currently setting up a testing script for use in my CI and I am executing tests using the --filter
option of the test
command. When I filter by test type - --filter="unit"
for example, I also get ESLint output. I want to also apply a filter of --filter="!ESLint"
to this so as to not perform ESLint with certain tests. I am doing this because I want to separate ESLint results from unit, integration and acceptance tests results by executing separate ember test
commands. How could this be achieved?