import fs from 'node:fs' import os from 'node:os' import path from 'node:path' async function globalSetup() { const tempDir = path.join(os.tmpdir(), 'nex-e2e') if (fs.existsSync(tempDir)) { console.log(`E2E temp dir: ${tempDir}`) } } export default globalSetup