()
| 110 | } |
| 111 | |
| 112 | async function getProxyAccessLog(): Promise<string> { |
| 113 | const check = await startCommand('docker', [ |
| 114 | 'exec', |
| 115 | containerName, |
| 116 | 'cat', |
| 117 | '/var/log/squid/access.log', |
| 118 | ]); |
| 119 | await expect(check).toExitWith(0); |
| 120 | return check.stdout.get(); |
| 121 | } |
| 122 | |
| 123 | async function runCliWithProxy( |
| 124 | env: Record<string, string>, |
no test coverage detected