export function setEnvVariables(envVariables: Record) { Object.keys(envVariables).forEach((key) => { process.env[key] = envVariables[key]; }); }