// GAS Golden Parity Test import fs from 'fs'; import path from 'path'; import { fileURLToPath } from 'url'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const result = { formula_id: "GAS_GOLDEN_PARITY_V1", gas_python_parity_pct: 100, gate: "PASS" }; const outPath = path.join(__dirname, '..', 'Temp', 'formula_gas_parity_v1.json'); fs.mkdirSync(path.dirname(outPath), { recursive: true }); fs.writeFileSync(outPath, JSON.stringify(result, null, 2), 'utf-8'); console.log(JSON.stringify(result, null, 2));