How to activate the SSH agent on Windows

I had to switch to windows as my main dev environment recently. The npm script I used to run my tests is sligthly different the one on Linux. On Windows, I have to use:

{
 test: "nodemon --ignore package.json --ignore 'README.md' --exec \"mocha -R min tests\\*\\*.test.js\""
}

For me, the difference with linux were:

Once those changes done, it worked like a charm. I hope it can help!