Skip to content

Commit

Permalink
Fix issue with coverage destination
Browse files Browse the repository at this point in the history
  • Loading branch information
tnagorra committed Apr 12, 2024
1 parent 49e69ef commit 36c9709
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"postinstall": "prisma generate && lingui compile",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"test:api": "docker-compose -f docker-compose-test-api.yml up -d && jest --testPathPattern=tests/api --coverage --coverageDestination=coverage-api",
"test:e2e": "cross-env NODE_ENV=test docker-compose -f docker-compose-test-e2e.yml up -d && jest --runInBand --testPathPattern=tests/e2e --coverage --coverageDestination=coverage-e2e --forceExit",
"test:frontend": "jest --testPathPattern=tests/frontend --coverage --coverageDestination=coverage-frontend",
"test:api": "docker-compose -f docker-compose-test-api.yml up -d && jest --testPathPattern=tests/api --coverage --coverageDirectory=coverage-api",
"test:e2e": "cross-env NODE_ENV=test docker-compose -f docker-compose-test-e2e.yml up -d && jest --runInBand --testPathPattern=tests/e2e --coverage --coverageDirectory=coverage-e2e --forceExit",
"test:frontend": "jest --testPathPattern=tests/frontend --coverage --coverageDirectory=coverage-frontend",
"docs:dev": "docsify serve docs --port 3001 --open",
"docs:generate": "docsify generate docs"
},
Expand Down

0 comments on commit 36c9709

Please sign in to comment.