- .option('-G, --growl', 'enable growl notification support')
- .option('-R, --reporter <name>', 'specify the reporter to use', 'spec')
- .option('-S, --sort', "sort test files")
- .option('-b, --bail', "bail after first test failure")
- .option('-d, --debug', "enable node's debugger, synonym for node --debug")
- .option('-g, --grep <pattern>', 'only run tests matching <pattern>')
- //.option('-gc', '--expose-gc', 'expose gc extension')
- .option('-i, --invert', 'inverts --grep matches')
- .option('-s, --slow <ms>', '"slow" test threshold in milliseconds [75]')
- .option('-S, --settings <path>', 'use meteor settings from the given file')
- .option('-t, --timeout <ms>', 'set test-case timeout in milliseconds [5000]', 5000)
- //.option('-u, --ui <name>', 'specify user-interface (bdd|tdd|exports)', 'bdd')
- .option('-B, --skip-build', 'do not build, just run the tests')
- .option('-o, --build-only', 'just build, do not run the tests')
- .option('-v, --verbose', 'run with verbose mode with logs from client/server', false)
- .option('-w, --webdriver <url>', 'webdriver url [default: http://127.0.0.1:9515]', 'http://127.0.0.1:9515')
- .option('-M, --dont-wait-for-meteor', 'do not wait until meteor is loaded')
- .option('-l, --meteor-load-timeout <ms>', 'meteor load timeout [2000]', parse10, 2000)
- .option('-a, --path-to-app <path>', 'path to a meteor application', path.resolve('.'))
- .option('-r, --remote-server <url>', 'run tests on a remote server')
- .option('-m, --mute-build', 'do not show build logs', false)