(
link: Link,
store: Store,
statusCode: number,
color?: boolean
)
| 52 | } delay=${parameters.delay}`; |
| 53 | }, |
| 54 | badStatusCode( |
| 55 | link: Link, |
| 56 | store: Store, |
| 57 | statusCode: number, |
| 58 | color?: boolean |
| 59 | ): string { |
| 60 | if (color) { |
| 61 | return ( |
| 62 | '✖ ' + |
| 63 | buildProductString(link, store, true) + |
| 64 | ' :: ' + |
| 65 | chalk.yellow(`STATUS CODE ERROR ${statusCode}`) |
| 66 | ); |
| 67 | } |
| 68 | |
| 69 | return `✖ ${buildProductString( |
| 70 | link, |
| 71 | store |
| 72 | )} :: STATUS CODE ERROR ${statusCode}`; |
| 73 | }, |
| 74 | bannedSeller(link: Link, store: Store, color?: boolean): string { |
| 75 | if (color) { |
| 76 | return ( |
nothing calls this directly
no test coverage detected