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
Istabul appears to include untested files in the test coverage percentage, but gulp-jsx-coverage doesn't appear to. Is there a way to set an includeUntested flag in the config?
The text was updated successfully, but these errors were encountered:
You can try to include all your target files into options.src then you can get coverage of not tested files. For example:
gulp.task('your_task_name',require('gulp-jsx-coverage').createTask({src: [// all test files'test/**/*.js','test/components/*.jsx',// include all possible targets for whole picture of coverage'lib/*.js','actions/*.js','stores/*.js','components/*.jsx',],// other GJC options
....}));
Istabul appears to include untested files in the test coverage percentage, but
gulp-jsx-coverage
doesn't appear to. Is there a way to set anincludeUntested
flag in the config?The text was updated successfully, but these errors were encountered: