import path from 'node:path'; import { fileURLToPath } from 'node:url'; import { captureFixture, runSmoke } from '../../firecrawl/_carlib/smoke.js'; const dir = path.dirname(fileURLToPath(import.meta.url)); if (process.argv[2] === 'capture') await captureFixture(dir, process.argv[3] ?? 'lots-page', Number(process.argv[4] ?? 8)); else await runSmoke(dir);