( out: string | undefined, cwd: string | undefined, )
| 303 | } |
| 304 | |
| 305 | function resolveScreenshotOut( |
| 306 | out: string | undefined, |
| 307 | cwd: string | undefined, |
| 308 | ): string | undefined { |
| 309 | return out ? SessionStore.expandHome(out, cwd) : out; |
| 310 | } |
| 311 | |
| 312 | async function applyScreenshotOverlay( |
| 313 | session: SessionState, |
no test coverage detected