-
-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't run mongodb-memory-server on Linux Mint #38
Comments
Please run following code on your machine: import getos from 'getos';
import os from 'os';
getos((e, os) => {
console.log(
{
platform: os.platform(),
arch: os.arch(),
version: '3.4.4',
os,
}
);
}); Don't forget to install required packages:
The problem somewhere in https://github.com/nodkz/mongodb-memory-server/blob/master/src/util/MongoBinaryDownloadUrl.js it does not understand params provided from the code above. It quite simple to fix, just look at tests https://github.com/nodkz/mongodb-memory-server/blob/master/src/util/__tests__/MongoBinaryDownloadUrl-test.js and add your test case for MINT. PS. How I understand MINT uses Ubuntu packages and should return such link |
Will be cool if you make PR. |
Thanks! I've fixed the problem, but don't have access to the repo. P.S. sorry for the delay |
Or you may publish here your changes as comment, and I put them manually. Tnx. |
Ok, I think it would be faster to publish here because changes are quite small /src/util/MongoBinaryDownloadUrl.js
/src/util/tests/MongoBinaryDownloadUrl-test.js
|
Tnx! |
The same as #32 but for Linux Mint.
Was trying just to make like this
But tests are failing
The text was updated successfully, but these errors were encountered: