/** Should only be used when it doesn't make sense for 'Bindings' or 'Variables' to be set. Otherwise, use getTestEnv(). */ export function getTestEnvVariables(): Cloudflare.Env { return getTestEnv(); } export function getTestEnv({ ADMIN_SDK_JSON = '{"client_email": "test@test.com", "project_id": "test-26g38"}', ENABLE_ANIFY = "true", TURSO_AUTH_TOKEN = "123", TURSO_URL = "http://127.0.0.1:3001", }: Partial = {}): Cloudflare.Env { return { ADMIN_SDK_JSON, ENABLE_ANIFY, TURSO_AUTH_TOKEN, TURSO_URL, }; }