I have a use case where I want to use murmur in golang integration tests within Visual Studio Code. VS Code has an option to set a .env file e.g. go.testEnvFile in settings, but as far as I can tell there isn't a way to run murmur before the test or debug is started from within the ide e.g. when clicking "debug test" above a test function.
If ResolveAll is exposed outside of internal I can call it from within the tests and manually set the env vars to their secrets, would you be open to moving this outside of the internal package?
I have a use case where I want to use murmur in golang integration tests within Visual Studio Code. VS Code has an option to set a .env file e.g.
go.testEnvFile
in settings, but as far as I can tell there isn't a way to run murmur before the test or debug is started from within the ide e.g. when clicking "debug test" above a test function.If ResolveAll is exposed outside of
internal
I can call it from within the tests and manually set the env vars to their secrets, would you be open to moving this outside of the internal package?