You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: A boolean argument "--coverage" was used with dot notation arguments "--coverage.enabled --coverage.reporter=json".
Please specify the "--coverage" argument with dot notation as well: "--coverage.enabled"
Expected behavior
I expected it to not add args or give me a way to override them.
Details
Action version: v2
OS, where your action is running (windows, linux): GitHub linux
action.yml file
```yml
name: Unit Test 🧪 [WebUI]
uses: ArtiomTr/jest-coverage-report-action@v2
with:
test-script: npm run test:coverage
threshold: 85
working-directory: 'frontend/apps/web-ui' ```
The text was updated successfully, but these errors were encountered:
Describe a bug
The action is automatically adding arguments to the
test-script
but they may not be valid.e.g. when using vitest instead of
jest
and
Expected behavior
I expected it to not add args or give me a way to override them.
Details
Action version: v2
OS, where your action is running (windows, linux): GitHub linux
action.yml file
uses: ArtiomTr/jest-coverage-report-action@v2
with:
test-script: npm run test:coverage
threshold: 85
working-directory: 'frontend/apps/web-ui' ```
The text was updated successfully, but these errors were encountered: