import path from 'node:path' export function buildArtifactPaths(outputDir) { return { redeemPageScreenshotPath: path.join(outputDir, 'redeem-page.png'), beijingTimeScreenshotPath: path.join(outputDir, 'beijing-time.png'), screenshotPath: path.join(outputDir, 'redeem-result.png'), htmlPath: path.join(outputDir, 'page.html'), resultPath: path.join(outputDir, 'result.json'), } }