test.js 460 B

1234567891011121314151617181920212223
  1. var opts = require("./nomnom")
  2. .option('debug', {
  3. abbr: 'd',
  4. flag: true,
  5. help: 'Print debugging info'
  6. })
  7. .option('config', {
  8. abbr: 'c',
  9. default: 'config.json',
  10. help: 'JSON file with tests to run'
  11. })
  12. .option('version', {
  13. flag: true,
  14. help: 'print version and exit',
  15. callback: function() {
  16. return "version 1.2.4";
  17. }
  18. })
  19. .parse();
  20. if (opts.debug) {
  21. console.log("debug")
  22. }