(entry)
| 99 | return `$ ${chalk.greenBright('cd')} ${entry.dir}\n` |
| 100 | }, |
| 101 | retry(entry) { |
| 102 | const attempt = `Attempt: ${entry.attempt}${entry.total == Infinity ? '' : `/${entry.total}`}` |
| 103 | const delay = entry.delay > 0 ? `; next in ${entry.delay}ms` : '' |
| 104 | |
| 105 | return `${chalk.bgRed.white(' FAIL ')} ${attempt}${delay}\n` |
| 106 | }, |
| 107 | end() { |
| 108 | return '' |
| 109 | }, |
no outgoing calls
no test coverage detected
searching dependent graphs…