Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

constants.js 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.SUPPORTED_FILE_EXTENSIONS = exports.SUPPORTED_HOOKS = exports.DEFAULT_CONFIGS = void 0;
  4. const DEFAULT_TIMEOUT = 10000;
  5. exports.DEFAULT_CONFIGS = () => ({
  6. specs: [],
  7. suites: {},
  8. exclude: [],
  9. outputDir: undefined,
  10. logLevel: 'info',
  11. logLevels: {},
  12. excludeDriverLogs: [],
  13. bail: 0,
  14. waitforInterval: 500,
  15. waitforTimeout: 5000,
  16. framework: 'mocha',
  17. reporters: [],
  18. services: [],
  19. maxInstances: 100,
  20. maxInstancesPerCapability: 100,
  21. filesToWatch: [],
  22. connectionRetryTimeout: 120000,
  23. connectionRetryCount: 3,
  24. execArgv: [],
  25. runnerEnv: {},
  26. runner: 'local',
  27. mochaOpts: {
  28. timeout: DEFAULT_TIMEOUT
  29. },
  30. jasmineNodeOpts: {
  31. defaultTimeoutInterval: DEFAULT_TIMEOUT
  32. },
  33. cucumberOpts: {
  34. timeout: DEFAULT_TIMEOUT
  35. },
  36. onPrepare: [],
  37. onWorkerStart: [],
  38. before: [],
  39. beforeSession: [],
  40. beforeSuite: [],
  41. beforeHook: [],
  42. beforeTest: [],
  43. beforeCommand: [],
  44. afterCommand: [],
  45. afterTest: [],
  46. afterHook: [],
  47. afterSuite: [],
  48. afterSession: [],
  49. after: [],
  50. onComplete: [],
  51. onReload: [],
  52. beforeFeature: [],
  53. beforeScenario: [],
  54. beforeStep: [],
  55. afterStep: [],
  56. afterScenario: [],
  57. afterFeature: [],
  58. });
  59. exports.SUPPORTED_HOOKS = [
  60. 'before', 'beforeSession', 'beforeSuite', 'beforeHook', 'beforeTest', 'beforeCommand',
  61. 'afterCommand', 'afterTest', 'afterHook', 'afterSuite', 'afterSession', 'after',
  62. 'beforeFeature', 'beforeScenario', 'beforeStep', 'afterStep', 'afterScenario', 'afterFeature',
  63. 'onReload', 'onPrepare', 'onWorkerStart', 'onComplete'
  64. ];
  65. exports.SUPPORTED_FILE_EXTENSIONS = [
  66. '.js', '.mjs', '.es6', '.ts', '.feature', '.coffee', '.cjs'
  67. ];