(link: Link, store: Store, color?: boolean)
| 171 | return `✖ ${buildSetupString(topic, store)} :: ${message}`; |
| 172 | }, |
| 173 | noResponse(link: Link, store: Store, color?: boolean): string { |
| 174 | if (color) { |
| 175 | return ( |
| 176 | '✖ ' + |
| 177 | buildProductString(link, store, true) + |
| 178 | ' :: ' + |
| 179 | chalk.yellow('NO RESPONSE') |
| 180 | ); |
| 181 | } |
| 182 | |
| 183 | return `✖ ${buildProductString(link, store)} :: NO RESPONSE`; |
| 184 | }, |
| 185 | outOfStock(link: Link, store: Store, color?: boolean): string { |
| 186 | if (color) { |
| 187 | return ( |
nothing calls this directly
no test coverage detected