feat: auto set env to host envs

This commit is contained in:
Morten Olsen
2025-05-18 20:34:11 +02:00
parent 1b2d345420
commit 0eff8cf603

View File

@@ -36,7 +36,7 @@ class Context {
constructor(options: ContextOptions = {}) {
this.input = options.input || {};
this.env = options.env || {};
this.env = options.env || process.env;
this.requests = options.requests || {};
this.responses = options.responses || {};
}