Coverage directory created in ./web
Closed this issue · 1 comments
jondewoo commented
With a fresh Redwood blog (yarn create redwood-app ./redwoodblog
):
- running
yarn rw test --coverage
creates the coverage directory in./web
- running
yarn rw test api --coverage
oryarn rw test web --coverage
creates the coverage directory in the project's root directory - running
yarn rw test --coverage --coverageDirectory=./coverage
is equivalent to (1) - as a workaround, running
yarn rw test --coverage --coverageDirectory=`pwd`/coverage
creates the coverage directory in the project's root directory
jondewoo commented
Sorry, wrong repo.