core
core copied to clipboard
Add method to test runner to return TServiceParams instead of requiring run
🪤 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