(entry)
| 96 | return `$ ${chalk.greenBright('fetch')} ${entry.url}${init}\n` |
| 97 | }, |
| 98 | cd(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` : '' |
no outgoing calls
no test coverage detected