(html)
| 95 | } |
| 96 | |
| 97 | function extractStaticAssetPath(html) { |
| 98 | const match = html.match(/\/_next\/static\/[^"' )]+/); |
| 99 | return match?.[0] || null; |
| 100 | } |
| 101 | |
| 102 | async function runPublicSmokeCheck(host, port) { |
| 103 | const deadline = Date.now() + PUBLIC_SMOKE_TIMEOUT_MS; |
no outgoing calls
no test coverage detected