3236891b80
no issue - Renovate merged in a breaking change to ember-cli-code-coverage which broke our coverage reporting for the admin app - This commit fixes the issue by pinning the version of ember-cli-code-coverage to the last working version and telling renovate to ignore it in the future - It also adds html coverage reporting to make it easier to run locally and see your coverage before pushing
6 lines
101 B
JavaScript
6 lines
101 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
parallel: true,
|
|
reporters: ['cobertura', 'html']
|
|
};
|