import { Instance } from "../project/instance" export namespace Env { const state = Instance.state(() => { // Create a shallow copy to isolate environment per instance // Prevents parallel tests from interfering with each other's env vars return { ...process.env } as Record }) export function get(key: string) { const env = state() return env[key] } export function all() { return state() } export function set(key: string, value: string) { const env = state() env[key] = value } export function remove(key: string) { const env = state() delete env[key] } }