Skip to content

Commit

Permalink
fix: disable test coverage again (#1390)
Browse files Browse the repository at this point in the history
This is not fixed, it's still causing larger builds to hang.

Reverts #1195
  • Loading branch information
achingbrain authored Oct 25, 2023
1 parent 90bf8a9 commit cfeffc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cmds/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ export default {
* @param {any} argv
*/
async handler (argv) {
// temporarily disable code coverage on node targets running node 18
if (argv.cov && process.version.startsWith('v18.') && argv.target === 'node') {
console.warn(kleur.red('!!! Temporarily disabling code coverage - https://github.com/ipfs/aegir/issues/1206\n')) // eslint-disable-line no-console
// temporarily disable code coverage on node 18
if (argv.cov && process.version.startsWith('v18.')) {
console.warn(kleur.red('!!! Temporarily disabling code coverage\n')) // eslint-disable-line no-console
delete argv.cov
}

Expand Down

0 comments on commit cfeffc2

Please sign in to comment.