CLI tool for using Meteor Velocity to test your Meteor apps.
npm install velocity-cli -gThis command runs the tests each time you change something.
velocity test-appNote: This command also starts your app right now.
This command runs the tests only once and then exits with the status code.
velocity test-app --ciThe command supports all options that meteor run supports. You can get a full list with meteor help run.
This command runs the tests each time you change something.
velocity test-package my-packageThis command runs the tests only once and then exits with the status code.
velocity test-package my-package --ciThe command supports a lot more options. You can find a list here.
velocity test-packagesYou can pass the same additional options as for velocity test-package.