MONGO_URL not honored?
Closed this issue · 1 comments
dandv commented
I want to pass an empty MONGO_URL to meteor test-packages because my package doesn't do any DB work. This works normally, i.e. MONGO_URL=mongodb:// meteor test-packages ./
works perfectly. But it looks like spacejam sets its own MONGO_URL:
$ echo $MONGO_URL
mongodb://
$ MONGO_URL=mongodb:// spacejam test-packages ./
spacejam: spawning meteor
[[[[[ Tests ]]]]]
=> Started proxy.
=> Started MongoDB.
spacejam: meteor mongodb is ready
...
rbabayoff commented
By default, spacejam unsets MONGO_URL, so the internal mongodb will be used, so that the tests can run faster. It is detailed in the documentation. If you still want to set a MONGO_URL, just run:
spacejam test-packages --mongo-url mongodb://