core icon indicating copy to clipboard operation
core copied to clipboard

Add method to test runner to return TServiceParams instead of requiring run

Open zoe-codez opened this issue 1 year ago • 0 comments

🪤 Context

const { logger } = await testRunner.getParams();

vs

let params: TServiceParams
await testRunner.run(i => params = i);
const { logger } = params; 

🤮


This probably will have the effect of returning a fully bootstrapped & ready set of params, so .run is required for other stuff

zoe-codez avatar Oct 09 '24 13:10 zoe-codez