Hi, bringing up the similar question to #32 The problem I'm trying to solve is to use different URI for mongo in tests because I'm dropping the entire collection after each test. So what I want to achieve is something like that: ` ENV_MONGO_URI: str({ devDefault: 'mongodb://mongo:27017/app', testDefault: 'mongodb://mongo:27017/app-test' }) ` If I understand correctly I can't use testOnly for that case since in development my uri will be undefined. Thanks in advance!