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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var _jestEach = require('jest-each');
  7. /**
  8. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  9. *
  10. * This source code is licensed under the MIT license found in the
  11. * LICENSE file in the root directory of this source tree.
  12. */
  13. var _default = environment => {
  14. environment.global.it.each = (0, _jestEach.bind)(environment.global.it);
  15. environment.global.fit.each = (0, _jestEach.bind)(environment.global.fit);
  16. environment.global.xit.each = (0, _jestEach.bind)(environment.global.xit);
  17. environment.global.describe.each = (0, _jestEach.bind)(
  18. environment.global.describe,
  19. false
  20. );
  21. environment.global.xdescribe.each = (0, _jestEach.bind)(
  22. environment.global.xdescribe,
  23. false
  24. );
  25. environment.global.fdescribe.each = (0, _jestEach.bind)(
  26. environment.global.fdescribe,
  27. false
  28. );
  29. environment.global.it.concurrent.each = (0, _jestEach.bind)(
  30. environment.global.it.concurrent,
  31. false
  32. );
  33. environment.global.it.concurrent.only.each = (0, _jestEach.bind)(
  34. environment.global.it.concurrent.only,
  35. false
  36. );
  37. environment.global.it.concurrent.skip.each = (0, _jestEach.bind)(
  38. environment.global.it.concurrent.skip,
  39. false
  40. );
  41. };
  42. exports.default = _default;