Select "I want to create my own custom commands" from the "Select your technology to prepopulate basic commands" dropdown.
Enter the following commands:
curl -o meteor_install_script.sh https://install.meteor.com/
chmod +x meteor_install_script.sh
sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh
./meteor_install_script.sh
export PATH=$PATH:~/.meteor/
meteor --version
meteor npm install
Leave the test commands like this:
npm test
meteor add dispatch:mocha-phantomjs
{
"name": "awesome meteor package",
"scripts": {
"test": "meteor test --driver-package dispatch:mocha-phantomjs --once"
}
}
npm test
in your project root.