You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
615 B

  1. 'use strict';
  2. module.exports = function (grunt, options) {
  3. return {
  4. options: {
  5. stdout: true
  6. },
  7. selenium: {
  8. command: 'node node_modules/protractor/bin/webdriver-manager start',
  9. options: {
  10. stdout: false,
  11. async: true
  12. }
  13. },
  14. protractor_update: {
  15. command: 'node node_modules/protractor/bin/webdriver-manager update'
  16. },
  17. npm_install: {
  18. command: 'npm install'
  19. },
  20. examples: {
  21. command: 'node generate-examples.js'
  22. }
  23. };
  24. };