(s: string)
| 9 | |
| 10 | export const succeed = (s: string) => ora(s).succeed(); |
| 11 | export const fail = (s: string) => { |
| 12 | ora(s).fail(); |
| 13 | process.exit(1); |
| 14 | }; |
| 15 | |
| 16 | const examples = [ |
| 17 | '--config pathTo/config.json --secrets pathTo/secrets.env', |
no test coverage detected