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 620B

1234567891011121314151617181920
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.DEFAULT_CONFIG = exports.INTRO_MESSAGE = exports.STATIC_RETURNS = void 0;
  4. exports.STATIC_RETURNS = {
  5. driver: '[WebdriverIO REPL client]',
  6. browser: '[WebdriverIO REPL client]',
  7. $: '[Function: findElement]',
  8. $$: '[Function: findElements]'
  9. };
  10. exports.INTRO_MESSAGE = `
  11. The execution has stopped!
  12. You can now go into the browser or use the command line as REPL
  13. (To exit, press ^C again or type .exit)
  14. `;
  15. exports.DEFAULT_CONFIG = {
  16. commandTimeout: 5000,
  17. prompt: '\u203A ',
  18. useGlobal: true,
  19. useColor: true
  20. };