Ben Nibbelink

Results 2 comments of Ben Nibbelink

Did this get resolved? I'm running into a similar issue when calling `synthesizeFromTestSuite()` using the js package

I was able to find a workaround: ```js const originalEnv = { ...process.env } try { Object.assign(process.env, { AZURE_API_KEY: provider.config.apiKey, AZURE_API_HOST: provider.config.apiHost, }) ...call synthesizeFromTestSuite() } catch (error) { ...handle...