f28769014c
refs https://linear.app/tryghost/issue/CORE-74/improve-the-test-situation - this commit: - adds the `ember-cli-code-coverage` dependency to collect coverage from ember tests - enables the `COVERAGE` env variable in CI - merges coverage data because tests are run in parallel - adds the codecov GitHub Action into CI so we can upload coverage reports
6 lines
93 B
JavaScript
6 lines
93 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
parallel: true,
|
|
reporters: ['cobertura']
|
|
};
|