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.

types.js 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.TEST_TIMEOUT_SYMBOL = exports.RETRY_TIMES = exports.STATE_SYM = void 0;
  6. var _expect = _interopRequireDefault(require('expect'));
  7. function _interopRequireDefault(obj) {
  8. return obj && obj.__esModule ? obj : {default: obj};
  9. }
  10. var global = (function () {
  11. if (typeof globalThis !== 'undefined') {
  12. return globalThis;
  13. } else if (typeof global !== 'undefined') {
  14. return global;
  15. } else if (typeof self !== 'undefined') {
  16. return self;
  17. } else if (typeof window !== 'undefined') {
  18. return window;
  19. } else {
  20. return Function('return this')();
  21. }
  22. })();
  23. var Symbol = global['jest-symbol-do-not-touch'] || global.Symbol;
  24. const STATE_SYM = Symbol('JEST_STATE_SYMBOL');
  25. exports.STATE_SYM = STATE_SYM;
  26. const RETRY_TIMES = Symbol.for('RETRY_TIMES'); // To pass this value from Runtime object to state we need to use global[sym]
  27. exports.RETRY_TIMES = RETRY_TIMES;
  28. const TEST_TIMEOUT_SYMBOL = Symbol.for('TEST_TIMEOUT_SYMBOL');
  29. exports.TEST_TIMEOUT_SYMBOL = TEST_TIMEOUT_SYMBOL;