Results 7 comments of Biswasindhu Mandal

This issue already resolved in PR- [!222](https://github.com/gruntjs/gruntjs.com/pull/222) This is current changes May be wait for review & deployment

Yes it's good to add some configuration in `.nycrc.json` for this default sort of test report.

@mahanthi-arun-kumar No, I did not see anyupdate reguarding this in the [istanbul/nyc](https://github.com/istanbuljs/nyc) documentation.

Previous Structure ``` src: contains all application codes test: contains unit test files of src/**/* folders ``` --------------------- But now I move all unt-test (`.*test*`) files into the `src` directory...

Try to use the file extension name under `excludes` `Istanbul Options`. It will work. As example: ``` excludes: [ '*.test.ts', '*.test.js' ], ``` or ``` excludes: [ '*.test.*' ], ```...

The issue is still reproducing. If we add `includes` option under `Istanbul options` ``` includes: [ '*.ts', '*.js' ], ``` It's not generating the coverage report. Showing error as follows:

It should work. Please add this configuration. ![image](https://user-images.githubusercontent.com/44528087/193018372-9e8373ce-d0bd-43ae-a403-975899858b02.png) or replace `setting.json` with this configuration: ``` { "workbench.iconTheme": "material-icon-theme", "update.enableWindowsBackgroundUpdates": false, "update.showReleaseNotes": false, "telemetry.enableCrashReporter": false, "javascript.updateImportsOnFileMove.enabled": "always", "typescript.updateImportsOnFileMove.enabled": "always", "security.workspace.trust.untrustedFiles": "open",...