test_helpers.js 274 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.mockUuid = void 0;
  4. function mockUuid() {
  5. let nextId = 0;
  6. return function () {
  7. return nextId++;
  8. };
  9. }
  10. exports.mockUuid = mockUuid;
  11. //# sourceMappingURL=test_helpers.js.map