@qoretechnologies/reqore 0.34.12 → 0.34.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -200,7 +200,7 @@ test('<Collection /> has infinite paging', () => {
200
200
  );
201
201
 
202
202
  expect(document.querySelectorAll('.reqore-pagination-wrapper').length).toBe(1);
203
- expect(document.querySelectorAll('.reqore-button').length).toBe(2);
203
+ expect(document.querySelectorAll('.reqore-button').length).toBe(3);
204
204
  expect(screen.getAllByText('90')).toBeTruthy();
205
205
 
206
206
  expect(document.querySelectorAll('.reqore-collection-item').length).toBe(10);
@@ -231,7 +231,7 @@ test('<Collection /> has custom paging', () => {
231
231
  );
232
232
 
233
233
  expect(document.querySelectorAll('.reqore-pagination-wrapper').length).toBe(1);
234
- expect(document.querySelectorAll('.reqore-button').length).toBe(2);
234
+ expect(document.querySelectorAll('.reqore-button').length).toBe(3);
235
235
  expect(document.querySelectorAll('.reqore-collection-item').length).toBe(50);
236
236
  expect(screen.getAllByText('Scroll to load more')).toBeTruthy();
237
237
  expect(screen.getAllByText('50')).toBeTruthy();
@@ -256,14 +256,17 @@ test('Renders <Pagination /> as a list', () => {
256
256
  expect(document.querySelectorAll('.reqore-button').length).toBe(105);
257
257
  });
258
258
 
259
- test('Renders <Pagination /> with load more button', () => {
259
+ test('Renders <Pagination /> with load more button and no load all button', () => {
260
260
  jest.useFakeTimers();
261
261
 
262
262
  render(
263
263
  <ReqoreUIProvider>
264
264
  <ReqoreLayoutContent>
265
265
  <ReqoreContent>
266
- <Component pagingOptions={{ infinite: true }} />
266
+ <Component
267
+ pagingOptions={{ infinite: true }}
268
+ componentOptions={{ showLoadAllButton: false }}
269
+ />
267
270
  </ReqoreContent>
268
271
  </ReqoreLayoutContent>
269
272
  </ReqoreUIProvider>
@@ -284,6 +287,34 @@ test('Renders <Pagination /> with load more button', () => {
284
287
  expect(document.querySelectorAll('.reqore-pagination-wrapper').length).toBe(1);
285
288
  });
286
289
 
290
+ test('Renders <Pagination /> with load all button', () => {
291
+ jest.useFakeTimers();
292
+
293
+ render(
294
+ <ReqoreUIProvider>
295
+ <ReqoreLayoutContent>
296
+ <ReqoreContent>
297
+ <Component pagingOptions={{ infinite: true }} />
298
+ </ReqoreContent>
299
+ </ReqoreLayoutContent>
300
+ </ReqoreUIProvider>
301
+ );
302
+
303
+ mockAllIsIntersecting(true);
304
+
305
+ expect(document.querySelectorAll('.reqore-button').length).toBe(2);
306
+ // 12 because of the badge on the buttons
307
+ expect(document.querySelectorAll('.reqore-tag').length).toBe(12);
308
+
309
+ fireEvent.click(document.querySelectorAll('.reqore-button')[1]!);
310
+
311
+ jest.advanceTimersByTime(1);
312
+ // 21 because of the badge on the button
313
+ expect(document.querySelectorAll('.reqore-tag').length).toBe(1000);
314
+ // Pagination should still be there
315
+ expect(document.querySelectorAll('.reqore-pagination-wrapper').length).toBe(0);
316
+ });
317
+
287
318
  test('Renders <Pagination /> with load more button and auto load', () => {
288
319
  render(
289
320
  <ReqoreUIProvider>
@@ -298,9 +329,9 @@ test('Renders <Pagination /> with load more button and auto load', () => {
298
329
  </ReqoreUIProvider>
299
330
  );
300
331
 
301
- expect(document.querySelectorAll('.reqore-button').length).toBe(1);
332
+ expect(document.querySelectorAll('.reqore-button').length).toBe(2);
302
333
  // 11 because of the badge on the button
303
- expect(document.querySelectorAll('.reqore-tag').length).toBe(501);
334
+ expect(document.querySelectorAll('.reqore-tag').length).toBe(502);
304
335
 
305
336
  mockAllIsIntersecting(true);
306
337
 
@@ -8,14 +8,17 @@ export interface IReqorePaginationComponentProps extends Omit<IReqoreControlGrou
8
8
  listPageButtonProps?: IReqoreDropdownProps;
9
9
  controlPageButtonProps?: IReqoreButtonProps;
10
10
  loadMoreButtonProps?: IReqoreButtonProps;
11
+ loadAllButtonProps?: IReqoreButtonProps;
11
12
  firstPageLabel?: string;
12
13
  lastPageLabel?: string;
13
14
  nextPageLabel?: string;
14
15
  previousPageLabel?: string;
15
16
  pageLabel?: string;
16
17
  loadMoreLabel?: string;
18
+ loadAllLabel?: string;
17
19
  showPages?: boolean;
18
20
  showControls?: boolean;
21
+ showLoadAllButton?: boolean;
19
22
  showPagesAs?: 'buttons' | 'list';
20
23
  showLabels?: boolean;
21
24
  scrollOnLoadMore?: boolean;
@@ -27,7 +30,7 @@ export interface IReqorePaginationComponentProps extends Omit<IReqoreControlGrou
27
30
  export interface IReqorePaginationProps<T> extends Omit<IReqorePagingResult<T>, 'items'>, IReqorePaginationComponentProps {
28
31
  }
29
32
  export declare const StyledPagesWrapper: any;
30
- declare function Pagination<T>({ allPages, back, first, currentPage, isLastPage, isFirstPage, pageCount, pages, last, next, setPage, infinite, itemsLeft, showPagesAs, pageButtonProps, activePageButtonProps, listPageButtonProps, controlPageButtonProps, loadMoreButtonProps, firstPageLabel, lastPageLabel, nextPageLabel, previousPageLabel, pageLabel, loadMoreLabel, showLabels, showPages, showControls, scrollOnLoadMore, autoLoadMore, itemsPerPage, renderControls, scrollContainer, scrollToTopOnPageChange, changePageOnScroll, ...rest }: IReqorePaginationProps<T>): JSX.Element;
33
+ declare function Pagination<T>({ allPages, back, first, currentPage, isLastPage, isFirstPage, pageCount, pages, last, next, setPage, infinite, itemsLeft, showPagesAs, pageButtonProps, activePageButtonProps, listPageButtonProps, controlPageButtonProps, loadMoreButtonProps, loadAllButtonProps, firstPageLabel, lastPageLabel, nextPageLabel, previousPageLabel, pageLabel, loadMoreLabel, loadAllLabel, showLabels, showPages, showControls, showLoadAllButton, scrollOnLoadMore, autoLoadMore, itemsPerPage, renderControls, scrollContainer, scrollToTopOnPageChange, changePageOnScroll, ...rest }: IReqorePaginationProps<T>): JSX.Element;
31
34
  export declare const ReqorePagination: typeof Pagination;
32
35
  export {};
33
36
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Paging/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAqB,EAAE,kBAAkB,EAAgB,MAAM,WAAW,CAAC;AAC3E,OAA2B,EAAE,wBAAwB,EAAE,MAAM,iBAAiB,CAAC;AAC/E,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAGnD,MAAM,WAAW,+BACf,SAAQ,IAAI,CAAC,wBAAwB,EAAE,UAAU,CAAC;IAClD,eAAe,CAAC,EAAE,kBAAkB,CAAC;IACrC,qBAAqB,CAAC,EAAE,kBAAkB,CAAC;IAC3C,mBAAmB,CAAC,EAAE,oBAAoB,CAAC;IAC3C,sBAAsB,CAAC,EAAE,kBAAkB,CAAC;IAC5C,mBAAmB,CAAC,EAAE,kBAAkB,CAAC;IACzC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IACjC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,kBAAkB,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IAC/C,eAAe,CAAC,EAAE,WAAW,CAAC;IAC9B,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACnC;AACD,MAAM,WAAW,sBAAsB,CAAC,CAAC,CACvC,SAAQ,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,EAC3C,+BAA+B;CAAG;AAEtC,eAAO,MAAM,kBAAkB,KAQ9B,CAAC;AAEF,iBAAS,UAAU,CAAC,CAAC,EAAE,EACrB,QAAQ,EACR,IAAI,EACJ,KAAK,EACL,WAAW,EACX,UAAU,EACV,WAAW,EACX,SAAS,EACT,KAAK,EACL,IAAI,EACJ,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,SAAS,EACT,WAAuB,EACvB,eAAoB,EACpB,qBAA0B,EAC1B,mBAAwB,EACxB,sBAA2B,EAC3B,mBAAwB,EACxB,cAAwB,EACxB,aAAsB,EACtB,aAAsB,EACtB,iBAA0B,EAC1B,SAAkB,EAClB,aAA2B,EAC3B,UAAU,EACV,SAAgB,EAChB,YAAmB,EACnB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,cAAc,EACd,eAAe,EACf,uBAA8B,EAC9B,kBAAkB,EAClB,GAAG,IAAI,EACR,EAAE,sBAAsB,CAAC,CAAC,CAAC,eAoN3B;AAED,eAAO,MAAM,gBAAgB,mBAAwC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Paging/index.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAqB,EAAE,kBAAkB,EAAgB,MAAM,WAAW,CAAC;AAC3E,OAA2B,EAAE,wBAAwB,EAAE,MAAM,iBAAiB,CAAC;AAC/E,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAGnD,MAAM,WAAW,+BACf,SAAQ,IAAI,CAAC,wBAAwB,EAAE,UAAU,CAAC;IAClD,eAAe,CAAC,EAAE,kBAAkB,CAAC;IACrC,qBAAqB,CAAC,EAAE,kBAAkB,CAAC;IAC3C,mBAAmB,CAAC,EAAE,oBAAoB,CAAC;IAC3C,sBAAsB,CAAC,EAAE,kBAAkB,CAAC;IAC5C,mBAAmB,CAAC,EAAE,kBAAkB,CAAC;IACzC,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,WAAW,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IACjC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,kBAAkB,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;IAC/C,eAAe,CAAC,EAAE,WAAW,CAAC;IAC9B,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACnC;AACD,MAAM,WAAW,sBAAsB,CAAC,CAAC,CACvC,SAAQ,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,EAC3C,+BAA+B;CAAG;AAEtC,eAAO,MAAM,kBAAkB,KAQ9B,CAAC;AAEF,iBAAS,UAAU,CAAC,CAAC,EAAE,EACrB,QAAQ,EACR,IAAI,EACJ,KAAK,EACL,WAAW,EACX,UAAU,EACV,WAAW,EACX,SAAS,EACT,KAAK,EACL,IAAI,EACJ,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,SAAS,EACT,WAAuB,EACvB,eAAoB,EACpB,qBAA0B,EAC1B,mBAAwB,EACxB,sBAA2B,EAC3B,mBAAwB,EACxB,kBAAuB,EACvB,cAAwB,EACxB,aAAsB,EACtB,aAAsB,EACtB,iBAA0B,EAC1B,SAAkB,EAClB,aAA2B,EAC3B,YAAyB,EACzB,UAAU,EACV,SAAgB,EAChB,YAAmB,EACnB,iBAAwB,EACxB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,cAAc,EACd,eAAe,EACf,uBAA8B,EAC9B,kBAAkB,EAClB,GAAG,IAAI,EACR,EAAE,sBAAsB,CAAC,CAAC,CAAC,eAoO3B;AAED,eAAO,MAAM,gBAAgB,mBAAwC,CAAC"}
@@ -63,9 +63,9 @@ var Button_1 = __importStar(require("../Button"));
63
63
  var ControlGroup_1 = __importDefault(require("../ControlGroup"));
64
64
  exports.StyledPagesWrapper = (0, styled_components_1["default"])(ControlGroup_1["default"])(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: unset;\n flex: 0 auto;\n justify-content: center;\n\n & > ", " {\n margin: 0;\n }\n"], ["\n width: unset;\n flex: 0 auto;\n justify-content: center;\n\n & > ", " {\n margin: 0;\n }\n"])), Button_1.StyledButton);
65
65
  function Pagination(_a) {
66
- var allPages = _a.allPages, back = _a.back, first = _a.first, currentPage = _a.currentPage, isLastPage = _a.isLastPage, isFirstPage = _a.isFirstPage, pageCount = _a.pageCount, pages = _a.pages, last = _a.last, next = _a.next, setPage = _a.setPage, infinite = _a.infinite, itemsLeft = _a.itemsLeft, _b = _a.showPagesAs, showPagesAs = _b === void 0 ? 'buttons' : _b, _c = _a.pageButtonProps, pageButtonProps = _c === void 0 ? {} : _c, _d = _a.activePageButtonProps, activePageButtonProps = _d === void 0 ? {} : _d, _e = _a.listPageButtonProps, listPageButtonProps = _e === void 0 ? {} : _e, _f = _a.controlPageButtonProps, controlPageButtonProps = _f === void 0 ? {} : _f, _g = _a.loadMoreButtonProps, loadMoreButtonProps = _g === void 0 ? {} : _g, _h = _a.firstPageLabel, firstPageLabel = _h === void 0 ? 'First' : _h, _j = _a.lastPageLabel, lastPageLabel = _j === void 0 ? 'Last' : _j, _k = _a.nextPageLabel, nextPageLabel = _k === void 0 ? 'Next' : _k, _l = _a.previousPageLabel, previousPageLabel = _l === void 0 ? 'Back' : _l, _m = _a.pageLabel, pageLabel = _m === void 0 ? 'Page' : _m, _o = _a.loadMoreLabel, loadMoreLabel = _o === void 0 ? 'Load more' : _o, showLabels = _a.showLabels, _p = _a.showPages, showPages = _p === void 0 ? true : _p, _q = _a.showControls, showControls = _q === void 0 ? true : _q, scrollOnLoadMore = _a.scrollOnLoadMore, autoLoadMore = _a.autoLoadMore, itemsPerPage = _a.itemsPerPage, renderControls = _a.renderControls, scrollContainer = _a.scrollContainer, _r = _a.scrollToTopOnPageChange, scrollToTopOnPageChange = _r === void 0 ? true : _r, changePageOnScroll = _a.changePageOnScroll, rest = __rest(_a, ["allPages", "back", "first", "currentPage", "isLastPage", "isFirstPage", "pageCount", "pages", "last", "next", "setPage", "infinite", "itemsLeft", "showPagesAs", "pageButtonProps", "activePageButtonProps", "listPageButtonProps", "controlPageButtonProps", "loadMoreButtonProps", "firstPageLabel", "lastPageLabel", "nextPageLabel", "previousPageLabel", "pageLabel", "loadMoreLabel", "showLabels", "showPages", "showControls", "scrollOnLoadMore", "autoLoadMore", "itemsPerPage", "renderControls", "scrollContainer", "scrollToTopOnPageChange", "changePageOnScroll"]);
67
- var _s = (0, react_1.useState)(undefined), loadMoreRef = _s[0], setLoadMoreRef = _s[1];
68
- var _t = (0, react_1.useState)(undefined), scrollTargetRef = _t[0], setScrollTargetRef = _t[1];
66
+ var allPages = _a.allPages, back = _a.back, first = _a.first, currentPage = _a.currentPage, isLastPage = _a.isLastPage, isFirstPage = _a.isFirstPage, pageCount = _a.pageCount, pages = _a.pages, last = _a.last, next = _a.next, setPage = _a.setPage, infinite = _a.infinite, itemsLeft = _a.itemsLeft, _b = _a.showPagesAs, showPagesAs = _b === void 0 ? 'buttons' : _b, _c = _a.pageButtonProps, pageButtonProps = _c === void 0 ? {} : _c, _d = _a.activePageButtonProps, activePageButtonProps = _d === void 0 ? {} : _d, _e = _a.listPageButtonProps, listPageButtonProps = _e === void 0 ? {} : _e, _f = _a.controlPageButtonProps, controlPageButtonProps = _f === void 0 ? {} : _f, _g = _a.loadMoreButtonProps, loadMoreButtonProps = _g === void 0 ? {} : _g, _h = _a.loadAllButtonProps, loadAllButtonProps = _h === void 0 ? {} : _h, _j = _a.firstPageLabel, firstPageLabel = _j === void 0 ? 'First' : _j, _k = _a.lastPageLabel, lastPageLabel = _k === void 0 ? 'Last' : _k, _l = _a.nextPageLabel, nextPageLabel = _l === void 0 ? 'Next' : _l, _m = _a.previousPageLabel, previousPageLabel = _m === void 0 ? 'Back' : _m, _o = _a.pageLabel, pageLabel = _o === void 0 ? 'Page' : _o, _p = _a.loadMoreLabel, loadMoreLabel = _p === void 0 ? 'Load more' : _p, _q = _a.loadAllLabel, loadAllLabel = _q === void 0 ? 'Load all' : _q, showLabels = _a.showLabels, _r = _a.showPages, showPages = _r === void 0 ? true : _r, _s = _a.showControls, showControls = _s === void 0 ? true : _s, _t = _a.showLoadAllButton, showLoadAllButton = _t === void 0 ? true : _t, scrollOnLoadMore = _a.scrollOnLoadMore, autoLoadMore = _a.autoLoadMore, itemsPerPage = _a.itemsPerPage, renderControls = _a.renderControls, scrollContainer = _a.scrollContainer, _u = _a.scrollToTopOnPageChange, scrollToTopOnPageChange = _u === void 0 ? true : _u, changePageOnScroll = _a.changePageOnScroll, rest = __rest(_a, ["allPages", "back", "first", "currentPage", "isLastPage", "isFirstPage", "pageCount", "pages", "last", "next", "setPage", "infinite", "itemsLeft", "showPagesAs", "pageButtonProps", "activePageButtonProps", "listPageButtonProps", "controlPageButtonProps", "loadMoreButtonProps", "loadAllButtonProps", "firstPageLabel", "lastPageLabel", "nextPageLabel", "previousPageLabel", "pageLabel", "loadMoreLabel", "loadAllLabel", "showLabels", "showPages", "showControls", "showLoadAllButton", "scrollOnLoadMore", "autoLoadMore", "itemsPerPage", "renderControls", "scrollContainer", "scrollToTopOnPageChange", "changePageOnScroll"]);
67
+ var _v = (0, react_1.useState)(undefined), loadMoreRef = _v[0], setLoadMoreRef = _v[1];
68
+ var _w = (0, react_1.useState)(undefined), scrollTargetRef = _w[0], setScrollTargetRef = _w[1];
69
69
  var observer = (0, react_1.useRef)(null);
70
70
  (0, react_use_1.useUpdateEffect)(function () {
71
71
  // If scroll container is defined, do not scroll to load more button
@@ -150,9 +150,11 @@ function Pagination(_a) {
150
150
  if (!renderControls) {
151
151
  return null;
152
152
  }
153
- return ((0, jsx_runtime_1.jsxs)(ControlGroup_1["default"], __assign({}, rest, { className: "".concat(rest.className || '', " reqore-pagination-wrapper"), style: { justifyContent: 'center' } }, { children: [infinite && !isLastPage ? ((0, jsx_runtime_1.jsxs)(ControlGroup_1["default"], __assign({ vertical: true }, { children: [(0, jsx_runtime_1.jsx)("div", { className: 'reqore-auto-scroll-target', ref: setScrollTargetRef }), (0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'ArrowDropDownLine', badge: itemsLeft, iconsAlign: 'center' }, loadMoreButtonProps, { onClick: next, ref: setLoadMoreRef, style: {
154
- scrollMarginTop: '200px'
155
- } }, { children: showLabels && loadMoreLabel }))] }))) : null, !infinite ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [showPagesAs === 'list' || (showControls && !showPages) ? ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'RewindMiniLine', fixed: true }, controlPageButtonProps, { onClick: first, disabled: isFirstPage, tooltip: !showLabels && firstPageLabel }, { children: showLabels && firstPageLabel }))) : null, showControls && ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'ArrowDropLeftLine', fixed: true }, controlPageButtonProps, { onClick: back, disabled: isFirstPage, tooltip: !showLabels && previousPageLabel }, { children: showLabels && previousPageLabel }))), showPages && ((0, jsx_runtime_1.jsx)(exports.StyledPagesWrapper, __assign({ wrap: true, horizontalAlign: 'center' }, { children: showPagesAs === 'buttons' ? (pages.map(function (page) { return ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ textAlign: 'center', fixed: true, onClick: function () { return setPage(page); }, active: page === currentPage }, (page === currentPage ? activePageButtonProps : pageButtonProps), { children: page }), page)); })) : ((0, jsx_runtime_1.jsx)(__1.ReqoreDropdown, __assign({ filterable: true, label: "".concat(showLabels ? "".concat(pageLabel, " ") : '').concat(currentPage, " / ").concat(pageCount), items: pages.map(function (page) { return (__assign({ label: "".concat(showLabels ? "".concat(pageLabel, " ") : '').concat(page), onClick: function () { return setPage(page); }, selected: page === currentPage }, (page === currentPage
153
+ return ((0, jsx_runtime_1.jsxs)(ControlGroup_1["default"], __assign({}, rest, { className: "".concat(rest.className || '', " reqore-pagination-wrapper"), style: { justifyContent: 'center' } }, { children: [infinite && !isLastPage ? ((0, jsx_runtime_1.jsxs)(ControlGroup_1["default"], __assign({ vertical: true }, { children: [(0, jsx_runtime_1.jsx)("div", { className: 'reqore-auto-scroll-target', ref: setScrollTargetRef }), (0, jsx_runtime_1.jsxs)(ControlGroup_1["default"], __assign({ stack: true }, { children: [(0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'ArrowDropDownLine', badge: itemsPerPage, iconsAlign: 'center' }, loadMoreButtonProps, { onClick: next, ref: setLoadMoreRef, style: {
154
+ scrollMarginTop: '200px'
155
+ } }, { children: showLabels && loadMoreLabel })), showLoadAllButton && ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'ArrowDropDownLine', badge: itemsLeft, iconsAlign: 'center' }, loadAllButtonProps, { onClick: last, style: {
156
+ scrollMarginTop: '200px'
157
+ } }, { children: showLabels && loadAllLabel })))] }))] }))) : null, !infinite ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [showPagesAs === 'list' || (showControls && !showPages) ? ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'RewindMiniLine', fixed: true }, controlPageButtonProps, { onClick: first, disabled: isFirstPage, tooltip: !showLabels && firstPageLabel }, { children: showLabels && firstPageLabel }))) : null, showControls && ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'ArrowDropLeftLine', fixed: true }, controlPageButtonProps, { onClick: back, disabled: isFirstPage, tooltip: !showLabels && previousPageLabel }, { children: showLabels && previousPageLabel }))), showPages && ((0, jsx_runtime_1.jsx)(exports.StyledPagesWrapper, __assign({ wrap: true, horizontalAlign: 'center' }, { children: showPagesAs === 'buttons' ? (pages.map(function (page) { return ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ textAlign: 'center', fixed: true, onClick: function () { return setPage(page); }, active: page === currentPage }, (page === currentPage ? activePageButtonProps : pageButtonProps), { children: page }), page)); })) : ((0, jsx_runtime_1.jsx)(__1.ReqoreDropdown, __assign({ filterable: true, label: "".concat(showLabels ? "".concat(pageLabel, " ") : '').concat(currentPage, " / ").concat(pageCount), items: pages.map(function (page) { return (__assign({ label: "".concat(showLabels ? "".concat(pageLabel, " ") : '').concat(page), onClick: function () { return setPage(page); }, selected: page === currentPage }, (page === currentPage
156
158
  ? activePageButtonProps
157
159
  : pageButtonProps))); }), placement: 'bottom', inputProps: { focusRules: { type: 'auto', viewportOnly: true } }, scrollToSelected: true }, listPageButtonProps))) }))), showControls && ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'ArrowDropRightLine', fixed: true }, controlPageButtonProps, { onClick: next, disabled: isLastPage, tooltip: !showLabels && nextPageLabel }, { children: showLabels && nextPageLabel }))), showPagesAs === 'list' || (showControls && !showPages) ? ((0, jsx_runtime_1.jsx)(Button_1["default"], __assign({ icon: 'SpeedMiniLine', fixed: true }, controlPageButtonProps, { onClick: last, disabled: isLastPage, tooltip: !showLabels && lastPageLabel }, { children: showLabels && lastPageLabel }))) : null] })) : null] })));
158
160
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Paging/index.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Paging/index.tsx"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qoretechnologies/reqore",
3
- "version": "0.34.12",
3
+ "version": "0.34.13",
4
4
  "description": "ReQore is a highly theme-able and modular UI library for React",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,14 +16,17 @@ export interface IReqorePaginationComponentProps
16
16
  listPageButtonProps?: IReqoreDropdownProps;
17
17
  controlPageButtonProps?: IReqoreButtonProps;
18
18
  loadMoreButtonProps?: IReqoreButtonProps;
19
+ loadAllButtonProps?: IReqoreButtonProps;
19
20
  firstPageLabel?: string;
20
21
  lastPageLabel?: string;
21
22
  nextPageLabel?: string;
22
23
  previousPageLabel?: string;
23
24
  pageLabel?: string;
24
25
  loadMoreLabel?: string;
26
+ loadAllLabel?: string;
25
27
  showPages?: boolean;
26
28
  showControls?: boolean;
29
+ showLoadAllButton?: boolean;
27
30
  showPagesAs?: 'buttons' | 'list';
28
31
  showLabels?: boolean;
29
32
  scrollOnLoadMore?: boolean;
@@ -66,15 +69,18 @@ function Pagination<T>({
66
69
  listPageButtonProps = {},
67
70
  controlPageButtonProps = {},
68
71
  loadMoreButtonProps = {},
72
+ loadAllButtonProps = {},
69
73
  firstPageLabel = 'First',
70
74
  lastPageLabel = 'Last',
71
75
  nextPageLabel = 'Next',
72
76
  previousPageLabel = 'Back',
73
77
  pageLabel = 'Page',
74
78
  loadMoreLabel = 'Load more',
79
+ loadAllLabel = 'Load all',
75
80
  showLabels,
76
81
  showPages = true,
77
82
  showControls = true,
83
+ showLoadAllButton = true,
78
84
  scrollOnLoadMore,
79
85
  autoLoadMore,
80
86
  itemsPerPage,
@@ -191,19 +197,35 @@ function Pagination<T>({
191
197
  {infinite && !isLastPage ? (
192
198
  <ReqoreControlGroup vertical>
193
199
  <div className='reqore-auto-scroll-target' ref={setScrollTargetRef} />
194
- <ReqoreButton
195
- icon='ArrowDropDownLine'
196
- badge={itemsLeft}
197
- iconsAlign='center'
198
- {...loadMoreButtonProps}
199
- onClick={next}
200
- ref={setLoadMoreRef}
201
- style={{
202
- scrollMarginTop: '200px',
203
- }}
204
- >
205
- {showLabels && loadMoreLabel}
206
- </ReqoreButton>
200
+ <ReqoreControlGroup stack>
201
+ <ReqoreButton
202
+ icon='ArrowDropDownLine'
203
+ badge={itemsPerPage}
204
+ iconsAlign='center'
205
+ {...loadMoreButtonProps}
206
+ onClick={next}
207
+ ref={setLoadMoreRef}
208
+ style={{
209
+ scrollMarginTop: '200px',
210
+ }}
211
+ >
212
+ {showLabels && loadMoreLabel}
213
+ </ReqoreButton>
214
+ {showLoadAllButton && (
215
+ <ReqoreButton
216
+ icon='ArrowDropDownLine'
217
+ badge={itemsLeft}
218
+ iconsAlign='center'
219
+ {...loadAllButtonProps}
220
+ onClick={last}
221
+ style={{
222
+ scrollMarginTop: '200px',
223
+ }}
224
+ >
225
+ {showLabels && loadAllLabel}
226
+ </ReqoreButton>
227
+ )}
228
+ </ReqoreControlGroup>
207
229
  </ReqoreControlGroup>
208
230
  ) : null}
209
231
  {!infinite ? (
@@ -174,7 +174,7 @@ export const Infinite: Story<
174
174
  > = Template.bind({});
175
175
  Infinite.args = {
176
176
  showLabels: true,
177
- fluid: true,
177
+ fluid: false,
178
178
  loadMoreButtonProps: {
179
179
  textAlign: 'center',
180
180
  },
@@ -195,6 +195,10 @@ InfiniteWithAutoScroll.args = {
195
195
  textAlign: 'center',
196
196
  size: 'big',
197
197
  },
198
+ loadAllButtonProps: {
199
+ textAlign: 'center',
200
+ size: 'big',
201
+ },
198
202
  loadMoreLabel: 'Load 100 more',
199
203
  pagingOptions: {
200
204
  infinite: true,
package/tests.json CHANGED
@@ -1 +1 @@
1
- {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":33,"numPassedTests":226,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":33,"numTotalTests":226,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1687439611726,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"duration":349,"failureDetails":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect />","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders empty <ReqoreMultiSelect />"},{"ancestorTitles":[],"duration":73,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value"},{"ancestorTitles":[],"duration":143,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value, items can be removed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value, items can be removed"},{"ancestorTitles":[],"duration":64,"failureDetails":[],"failureMessages":[],"fullName":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created"},{"ancestorTitles":[],"duration":567,"failureDetails":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created"},{"ancestorTitles":[],"duration":1299,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list"},{"ancestorTitles":[],"duration":383,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list"},{"ancestorTitles":[],"duration":776,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list","invocations":1,"location":null,"numPassingAsserts":9,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list"},{"ancestorTitles":[],"duration":762,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list","invocations":1,"location":null,"numPassingAsserts":9,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list"},{"ancestorTitles":[],"duration":456,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused"},{"ancestorTitles":[],"duration":573,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key"},{"ancestorTitles":[],"duration":737,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes","invocations":1,"location":null,"numPassingAsserts":8,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes"},{"ancestorTitles":[],"duration":76,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked"},{"ancestorTitles":[],"duration":816,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemAdded when an item is added","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemAdded when an item is added"},{"ancestorTitles":[],"duration":48,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemRemoved when an item is removed","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemRemoved when an item is removed"}],"endTime":1687439633030,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/multiselect.test.tsx","startTime":1687439612304,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":139,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Input /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Input /> properly"},{"ancestorTitles":[],"duration":153,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Input /> with clear button properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Input /> with clear button properly"},{"ancestorTitles":[],"duration":41,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Input /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <Input /> cannot be cleared"},{"ancestorTitles":[],"duration":41,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Input /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Input /> cannot be cleared"},{"ancestorTitles":[],"duration":58,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> gets automatically focused"},{"ancestorTitles":[],"duration":41,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Input /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Input /> does not get automatically focused"},{"ancestorTitles":[],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Input /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <Input /> does not get automatically focused"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> gets automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> does not get automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> does not get automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets automatically focused if its inside of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> gets automatically focused if its inside of viewport"},{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any letter is pressed"},{"ancestorTitles":[],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any letter is pressed 2"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit is pressed"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit is pressed 2"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit or letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit or letter is pressed"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit or letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit or letter is pressed 2"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after a specified shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after a specified shortcut is pressed"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport"},{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> does not get focused when typing in another input","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Input /> does not get focused when typing in another input"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Input /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Readonly <Input /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Input /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Disabled <Input /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> is cleared when focused","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> is cleared when focused"},{"ancestorTitles":[],"duration":258,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Input /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Input /> works"}],"endTime":1687439635423,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1687439633060,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":79,"failureDetails":[],"failureMessages":[],"fullName":"Renders <TextArea /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <TextArea /> properly"},{"ancestorTitles":[],"duration":138,"failureDetails":[],"failureMessages":[],"fullName":"Renders <TextArea /> with clear button properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <TextArea /> with clear button properly"},{"ancestorTitles":[],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <TextArea /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <TextArea /> cannot be cleared"},{"ancestorTitles":[],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Textarea /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Textarea /> cannot be cleared"},{"ancestorTitles":[],"duration":20,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> gets automatically focused"},{"ancestorTitles":[],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Textarea /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Textarea /> does not get automatically focused"},{"ancestorTitles":[],"duration":39,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Textarea /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <Textarea /> does not get automatically focused"},{"ancestorTitles":[],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> gets automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> does not get automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> does not get automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets automatically focused if its inside of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> gets automatically focused if its inside of viewport"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any letter is pressed"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any letter is pressed 2"},{"ancestorTitles":[],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit is pressed"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit is pressed 2"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit or letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit or letter is pressed"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit or letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit or letter is pressed 2"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after a specified shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after a specified shortcut is pressed"},{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport"},{"ancestorTitles":[],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> does not get focused when typing in another input","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Textarea /> does not get focused when typing in another input"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Textarea /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Readonly <Textarea /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Textarea /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Disabled <Textarea /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> is cleared when focused","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> is cleared when focused"},{"ancestorTitles":[],"duration":213,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Textarea /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Textarea /> works"}],"endTime":1687439637447,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1687439635444,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":264,"failureDetails":[],"failureMessages":[],"fullName":"Renders full <Tabs /> properly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders full <Tabs /> properly"},{"ancestorTitles":[],"duration":429,"failureDetails":[],"failureMessages":[],"fullName":"Renders shortened <Tabs /> properly","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"Renders shortened <Tabs /> properly"},{"ancestorTitles":[],"duration":58,"failureDetails":[],"failureMessages":[],"fullName":"Can select hidden <Tabs /> when shortened","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Can select hidden <Tabs /> when shortened"},{"ancestorTitles":[],"duration":104,"failureDetails":[],"failureMessages":[],"fullName":"Default active tab can be specified","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Default active tab can be specified"},{"ancestorTitles":[],"duration":134,"failureDetails":[],"failureMessages":[],"fullName":"Changes tab and runs callback","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Changes tab and runs callback"},{"ancestorTitles":[],"duration":123,"failureDetails":[],"failureMessages":[],"fullName":"Does not change tab and run callback when disabled","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Does not change tab and run callback when disabled"},{"ancestorTitles":[],"duration":99,"failureDetails":[],"failureMessages":[],"fullName":"Does not change tab when mounted and active tab is set","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Does not change tab when mounted and active tab is set"},{"ancestorTitles":[],"duration":165,"failureDetails":[],"failureMessages":[],"fullName":"Changes tab programatically and runs callback","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Changes tab programatically and runs callback"},{"ancestorTitles":[],"duration":149,"failureDetails":[],"failureMessages":[],"fullName":"Closable tab can be closed if not disabled","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Closable tab can be closed if not disabled"}],"endTime":1687439640487,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1687439637465,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":2300,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <Pagination />","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders default <Pagination />"},{"ancestorTitles":[],"duration":190,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with only 5 page buttons","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with only 5 page buttons"},{"ancestorTitles":[],"duration":30,"failureDetails":[],"failureMessages":[],"fullName":"Renders no <Pagination /> if only one page exists","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders no <Pagination /> if only one page exists"},{"ancestorTitles":[],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Renders no <Pagination /> if no items exist","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders no <Pagination /> if no items exist"},{"ancestorTitles":[],"duration":979,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> without control buttons","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> without control buttons"},{"ancestorTitles":[],"duration":106,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> without page buttons","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> without page buttons"},{"ancestorTitles":[],"duration":142,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with labels","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with labels"},{"ancestorTitles":[],"duration":108,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with custom labels","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with custom labels"},{"ancestorTitles":[],"duration":185,"failureDetails":[],"failureMessages":[],"fullName":"Renders list <Pagination /> with labels","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders list <Pagination /> with labels"},{"ancestorTitles":[],"duration":188,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with only 5 page buttons and start page 11","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with only 5 page buttons and start page 11"},{"ancestorTitles":[],"duration":714,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with custom number of items per page","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with custom number of items per page"},{"ancestorTitles":[],"duration":1661,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> as a list","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> as a list"},{"ancestorTitles":[],"duration":162,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with load more button","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with load more button"},{"ancestorTitles":[],"duration":3939,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with load more button and auto load","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with load more button and auto load"},{"ancestorTitles":[],"duration":1690,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> and changes pages with vertical scroll","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> and changes pages with vertical scroll"},{"ancestorTitles":[],"duration":1658,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> and changes pages with horizontal scroll","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> and changes pages with horizontal scroll"}],"endTime":1687439656622,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/pagination.test.tsx","startTime":1687439640507,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":478,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Table /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders basic <Table /> properly"},{"ancestorTitles":[],"duration":307,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Table /> with grouped columns properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Table /> with grouped columns properly"},{"ancestorTitles":[],"duration":212,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Table /> with custom content","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Table /> with custom content"},{"ancestorTitles":[],"duration":528,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Table /> with predefined content","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders <Table /> with predefined content"},{"ancestorTitles":[],"duration":385,"failureDetails":[],"failureMessages":[],"fullName":"Sorting on <Table /> works properly","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Sorting on <Table /> works properly"},{"ancestorTitles":[],"duration":659,"failureDetails":[],"failureMessages":[],"fullName":"Rows on <Table /> can be selected","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Rows on <Table /> can be selected"},{"ancestorTitles":[],"duration":355,"failureDetails":[],"failureMessages":[],"fullName":"Rows on <Table /> cannot be selected if _selectId is missing","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Rows on <Table /> cannot be selected if _selectId is missing"},{"ancestorTitles":[],"duration":691,"failureDetails":[],"failureMessages":[],"fullName":"Rows on <Table /> are all selected/deselected when clicking on header","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Rows on <Table /> are all selected/deselected when clicking on header"},{"ancestorTitles":[],"duration":255,"failureDetails":[],"failureMessages":[],"fullName":"Cells on <Table /> are interactive","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Cells on <Table /> are interactive"}],"endTime":1687439661716,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1687439656638,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":537,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> properly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> properly"},{"ancestorTitles":[],"duration":21,"failureDetails":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when items are empty","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders disabled <Dropdown /> when items are empty"},{"ancestorTitles":[],"duration":27,"failureDetails":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when items are not empty & disabled prop is true","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders disabled <Dropdown /> when items are not empty & disabled prop is true"},{"ancestorTitles":[],"duration":272,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> with custom component and custom handler","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> with custom component and custom handler"},{"ancestorTitles":[],"duration":209,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> is opened by default","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> is opened by default"},{"ancestorTitles":[],"duration":81,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and calls a function on item click, closes the dropdown","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> and calls a function on item click, closes the dropdown"},{"ancestorTitles":[],"duration":416,"failureDetails":[],"failureMessages":[],"fullName":"Renders filterable <Dropdown /> and filters items correctly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders filterable <Dropdown /> and filters items correctly"},{"ancestorTitles":[],"duration":251,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and updates its items when state changes, does not close dropdown","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> and updates its items when state changes, does not close dropdown"}],"endTime":1687439664640,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1687439661732,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":69,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns all pages","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"useReqorePaging returns all pages"},{"ancestorTitles":[],"duration":30,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging with default start page","invocations":1,"location":null,"numPassingAsserts":8,"retryReasons":[],"status":"passed","title":"useReqorePaging with default start page"},{"ancestorTitles":[],"duration":28,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging specified number of pages","invocations":1,"location":null,"numPassingAsserts":8,"retryReasons":[],"status":"passed","title":"useReqorePaging specified number of pages"},{"ancestorTitles":[],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns 1 page when items are empty","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqorePaging returns 1 page when items are empty"},{"ancestorTitles":[],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns correct number of rounded pages","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"useReqorePaging returns correct number of rounded pages"},{"ancestorTitles":[],"duration":10,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns items per page","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqorePaging returns items per page"},{"ancestorTitles":[],"duration":34,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns new items and pages when size of data change, current page is set to 1","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"useReqorePaging returns new items and pages when size of data change, current page is set to 1"},{"ancestorTitles":[],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging does not return new items and pages when data change","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"useReqorePaging does not return new items and pages when data change"},{"ancestorTitles":[],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging page navigation works correctly","invocations":1,"location":null,"numPassingAsserts":14,"retryReasons":[],"status":"passed","title":"useReqorePaging page navigation works correctly"},{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns correct number of items with infinite loading","invocations":1,"location":null,"numPassingAsserts":10,"retryReasons":[],"status":"passed","title":"useReqorePaging returns correct number of items with infinite loading"}],"endTime":1687439665839,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/hooks/useReqorePaging.test.tsx","startTime":1687439664654,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":1143,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Collection /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders basic <Collection /> properly"},{"ancestorTitles":[],"duration":831,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> items can be filtered","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"<Collection /> items can be filtered"},{"ancestorTitles":[],"duration":790,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> filter is properly removed by the clear button","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"<Collection /> filter is properly removed by the clear button"},{"ancestorTitles":[],"duration":343,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> filter is focused when a shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Collection /> filter is focused when a shortcut is pressed"},{"ancestorTitles":[],"duration":46,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> shows no data message when empty","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Collection /> shows no data message when empty"},{"ancestorTitles":[],"duration":508,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> can be sorted","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Collection /> can be sorted"},{"ancestorTitles":[],"duration":617,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has default paging","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Collection /> has default paging"},{"ancestorTitles":[],"duration":567,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has list paging","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Collection /> has list paging"},{"ancestorTitles":[],"duration":738,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has infinite paging","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"<Collection /> has infinite paging"},{"ancestorTitles":[],"duration":3553,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has custom paging","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"<Collection /> has custom paging"},{"ancestorTitles":[],"duration":446,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has 2 paging controls","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Collection /> has 2 paging controls"}],"endTime":1687439677148,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1687439665870,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":65,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Panel /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders basic <Panel /> properly"},{"ancestorTitles":[],"duration":48,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Panel /> with title properly","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders basic <Panel /> with title properly"},{"ancestorTitles":[],"duration":134,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Panel /> that is collapsed by default and can be expanded","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders basic <Panel /> that is collapsed by default and can be expanded"},{"ancestorTitles":[],"duration":40,"failureDetails":[],"failureMessages":[],"fullName":"Renders closable <Panel /> properly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders closable <Panel /> properly"},{"ancestorTitles":[],"duration":289,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Panel /> with actions","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Panel /> with actions"},{"ancestorTitles":[],"duration":22,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Panel /> without actions group if all actions are not shown","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Panel /> without actions group if all actions are not shown"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Panel /> without title & bottom actions if all actions are not shown, there is no icon, & title is not collapsible","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders <Panel /> without title & bottom actions if all actions are not shown, there is no icon, & title is not collapsible"},{"ancestorTitles":[],"duration":222,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Panel /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Panel /> works"},{"ancestorTitles":[],"duration":72,"failureDetails":[],"failureMessages":[],"fullName":"Custom control props on <Panel />","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Custom control props on <Panel />"}],"endTime":1687439679265,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1687439677179,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":176,"failureDetails":[],"failureMessages":[],"fullName":"Shows popover on hover, hides on leave","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Shows popover on hover, hides on leave"},{"ancestorTitles":[],"duration":40,"failureDetails":[],"failureMessages":[],"fullName":"Shows popover on click, hides only on click away","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows popover on click, hides only on click away"},{"ancestorTitles":[],"duration":36,"failureDetails":[],"failureMessages":[],"fullName":"Shows custom content","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Shows custom content"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"Runs callback function","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Runs callback function"},{"ancestorTitles":[],"duration":41,"failureDetails":[],"failureMessages":[],"fullName":"Shows the popover after a local delay, ignoring global delay","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows the popover after a local delay, ignoring global delay"},{"ancestorTitles":[],"duration":37,"failureDetails":[],"failureMessages":[],"fullName":"Shows the popover after a global delay","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows the popover after a global delay"},{"ancestorTitles":[],"duration":39,"failureDetails":[],"failureMessages":[],"fullName":"Shows the popover with blur","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Shows the popover with blur"},{"ancestorTitles":[],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Does not show the popover with delay if time not reached","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Does not show the popover with delay if time not reached"},{"ancestorTitles":[],"duration":89,"failureDetails":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "},{"ancestorTitles":[],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Correctly passes popover data for non-opened popover","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Correctly passes popover data for non-opened popover"},{"ancestorTitles":[],"duration":77,"failureDetails":[],"failureMessages":[],"fullName":"Correctly passes popover data for opened popover","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Correctly passes popover data for opened popover"}],"endTime":1687439681208,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1687439679282,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":142,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Button /> properly"},{"ancestorTitles":[],"duration":24,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> using `label`","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> using `label`"},{"ancestorTitles":[],"duration":190,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with size properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with size properly"},{"ancestorTitles":[],"duration":59,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with icon properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Button /> with icon properly"},{"ancestorTitles":[],"duration":307,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with intent properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with intent properly"},{"ancestorTitles":[],"duration":51,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with right icon properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with right icon properly"},{"ancestorTitles":[],"duration":60,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with icon and right icon properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with icon and right icon properly"},{"ancestorTitles":[],"duration":21,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with onClick function","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with onClick function"},{"ancestorTitles":[],"duration":100,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with a 0 badge","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with a 0 badge"},{"ancestorTitles":[],"duration":25,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with a string badge","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with a string badge"},{"ancestorTitles":[],"duration":24,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with a Tag props badge","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with a Tag props badge"},{"ancestorTitles":[],"duration":44,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with multiple badges","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with multiple badges"},{"ancestorTitles":[],"duration":345,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Button /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Button /> works"}],"endTime":1687439683875,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1687439681221,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":257,"failureDetails":[],"failureMessages":[],"fullName":"Renders sidebar","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders sidebar"},{"ancestorTitles":[],"duration":92,"failureDetails":[],"failureMessages":[],"fullName":"Sidebar can be collapsed","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Sidebar can be collapsed"},{"ancestorTitles":[],"duration":91,"failureDetails":[],"failureMessages":[],"fullName":"Can open submenu manually","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Can open submenu manually"},{"ancestorTitles":[],"duration":81,"failureDetails":[],"failureMessages":[],"fullName":"Submenu opens automatically if path matches","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Submenu opens automatically if path matches"},{"ancestorTitles":[],"duration":189,"failureDetails":[],"failureMessages":[],"fullName":"Bookmarks can be added and removed","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Bookmarks can be added and removed"},{"ancestorTitles":[],"duration":40,"failureDetails":[],"failureMessages":[],"fullName":"Bookmarks clicks are not propagated through","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Bookmarks clicks are not propagated through"},{"ancestorTitles":[],"duration":67,"failureDetails":[],"failureMessages":[],"fullName":"Renders item as <p> element with onClick","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders item as <p> element with onClick"},{"ancestorTitles":[],"duration":232,"failureDetails":[],"failureMessages":[],"fullName":"Renders floating sidebar with item as <p> element with onClick, closes on item click","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders floating sidebar with item as <p> element with onClick, closes on item click"},{"ancestorTitles":[],"duration":62,"failureDetails":[],"failureMessages":[],"fullName":"Renders custom item at the top","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders custom item at the top"}],"endTime":1687439685846,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1687439683891,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":167,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Modal /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders basic <Modal /> properly"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Does not renders <Modal /> if its not open","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Does not renders <Modal /> if its not open"},{"ancestorTitles":[],"duration":10,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Modal /> with custom dimensions","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Modal /> with custom dimensions"},{"ancestorTitles":[],"duration":547,"failureDetails":[],"failureMessages":[],"fullName":"Renders confirmation <Modal /> ","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders confirmation <Modal /> "},{"ancestorTitles":[],"duration":135,"failureDetails":[],"failureMessages":[],"fullName":"Always renders confirmation <Modal /> properly above a normal modal","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Always renders confirmation <Modal /> properly above a normal modal"}],"endTime":1687439688019,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1687439685860,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":1951,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer />","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer />"},{"ancestorTitles":[],"duration":2775,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer /> with both control wrappers","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer /> with both control wrappers"},{"ancestorTitles":[],"duration":2536,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer /> with both control wrappers, one included in children","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer /> with both control wrappers, one included in children"},{"ancestorTitles":[],"duration":154,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer /> with onPageChange callback","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer /> with onPageChange callback"}],"endTime":1687439696877,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/containers/paging.test.tsx","startTime":1687439688032,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":268,"failureDetails":[],"failureMessages":[],"fullName":"Adds notifications and dismisses them automatically","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Adds notifications and dismisses them automatically"},{"ancestorTitles":[],"duration":38,"failureDetails":[],"failureMessages":[],"fullName":"Adds a notification and updates it","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Adds a notification and updates it"},{"ancestorTitles":[],"duration":30,"failureDetails":[],"failureMessages":[],"fullName":"Notification has a click event","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Notification has a click event"},{"ancestorTitles":[],"duration":21,"failureDetails":[],"failureMessages":[],"fullName":"Notification has a close event","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Notification has a close event"},{"ancestorTitles":[],"duration":21,"failureDetails":[],"failureMessages":[],"fullName":"Notification has a finish event","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Notification has a finish event"},{"ancestorTitles":[],"duration":180,"failureDetails":[],"failureMessages":[],"fullName":"Maximum of 5 notifications is shown at once","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Maximum of 5 notifications is shown at once"}],"endTime":1687439698329,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1687439696889,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":759,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tag /> properly"},{"ancestorTitles":[],"duration":313,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> group properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Tag /> group properly"},{"ancestorTitles":[],"duration":33,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> without remove button if disabled","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tag /> without remove button if disabled"},{"ancestorTitles":[],"duration":35,"failureDetails":[],"failureMessages":[],"fullName":"Fires onClick and onRemoveClick <Tag /> events","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Fires onClick and onRemoveClick <Tag /> events"},{"ancestorTitles":[],"duration":48,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> with the label key","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tag /> with the label key"}],"endTime":1687439700881,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1687439698341,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":59,"failureDetails":[],"failureMessages":[],"fullName":"Does not render <Drawer /> if not open","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Does not render <Drawer /> if not open"},{"ancestorTitles":[],"duration":113,"failureDetails":[],"failureMessages":[],"fullName":"Renders opened <Drawer /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders opened <Drawer /> properly"},{"ancestorTitles":[],"duration":149,"failureDetails":[],"failureMessages":[],"fullName":"Renders hidable <Drawer /> properly","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"Renders hidable <Drawer /> properly"},{"ancestorTitles":[],"duration":58,"failureDetails":[],"failureMessages":[],"fullName":"Renders closable <Drawer /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders closable <Drawer /> properly"},{"ancestorTitles":[],"duration":56,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Drawer /> with interactive backdrop","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Drawer /> with interactive backdrop"},{"ancestorTitles":[],"duration":112,"failureDetails":[],"failureMessages":[],"fullName":"<Drawer /> actions are changed properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Drawer /> actions are changed properly"}],"endTime":1687439702911,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1687439700919,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":434,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Tree /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders basic <Tree /> properly"},{"ancestorTitles":[],"duration":178,"failureDetails":[],"failureMessages":[],"fullName":"Shows textarea for <Tree /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Shows textarea for <Tree /> properly"},{"ancestorTitles":[],"duration":531,"failureDetails":[],"failureMessages":[],"fullName":"<Tree /> items can be expanded and collapsed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Tree /> items can be expanded and collapsed"},{"ancestorTitles":[],"duration":271,"failureDetails":[],"failureMessages":[],"fullName":"Shows types for <Tree /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Shows types for <Tree /> properly"},{"ancestorTitles":[],"duration":650,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tree /> with clickable items","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tree /> with clickable items"}],"endTime":1687439705809,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1687439702932,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":222,"failureDetails":[],"failureMessages":[],"fullName":"Renders full <Breadcrumbs /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders full <Breadcrumbs /> properly"},{"ancestorTitles":[],"duration":52,"failureDetails":[],"failureMessages":[],"fullName":"Renders shortened <Breadcrumbs /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders shortened <Breadcrumbs /> properly"},{"ancestorTitles":[],"duration":413,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Breadcrumbs /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Breadcrumbs /> works"}],"endTime":1687439707256,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1687439705831,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":225,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Menu /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Menu /> properly"},{"ancestorTitles":[],"duration":83,"failureDetails":[],"failureMessages":[],"fullName":"<Menu /> item can be clicked","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Menu /> item can be clicked"},{"ancestorTitles":[],"duration":116,"failureDetails":[],"failureMessages":[],"fullName":"<Menu /> item has right clickable button","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Menu /> item has right clickable button"}],"endTime":1687439708409,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1687439707268,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":175,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Message /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Message /> properly"},{"ancestorTitles":[],"duration":34,"failureDetails":[],"failureMessages":[],"fullName":"Runs onFinish on message after duration","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Runs onFinish on message after duration"},{"ancestorTitles":[],"duration":36,"failureDetails":[],"failureMessages":[],"fullName":"Runs onClose when closed","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Runs onClose when closed"},{"ancestorTitles":[],"duration":151,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Message /> works","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Tooltip on <Message /> works"}],"endTime":1687439709987,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1687439708420,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":62,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreEffect /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <ReqoreEffect /> properly"},{"ancestorTitles":[],"duration":25,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreTextEffect /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <ReqoreTextEffect /> properly"}],"endTime":1687439710759,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/effect.test.tsx","startTime":1687439710002,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":68,"failureDetails":[],"failureMessages":[],"fullName":"<Heading /> renders properly","invocations":1,"location":null,"numPassingAsserts":12,"retryReasons":[],"status":"passed","title":"<Heading /> renders properly"},{"ancestorTitles":[],"duration":177,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Heading /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Heading /> works"}],"endTime":1687439711734,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/heading.test.tsx","startTime":1687439710772,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":206,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Checkbox /> properly"},{"ancestorTitles":[],"duration":221,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Checkbox /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Checkbox /> works"}],"endTime":1687439712920,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1687439711747,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":63,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Icon /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Icon /> properly"},{"ancestorTitles":[],"duration":32,"failureDetails":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders empty <Icon /> if icon does not exist"},{"ancestorTitles":[],"duration":185,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Icon /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Icon /> works"}],"endTime":1687439714349,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1687439712932,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return the default theme","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return the default theme"},{"ancestorTitles":[],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return modified main intent color, original color is preserved","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return modified main intent color, original color is preserved"},{"ancestorTitles":[],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return modified main custom color, original color is preserved","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return modified main custom color, original color is preserved"},{"ancestorTitles":[],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return modified main color if intent is passed, original color is preserved","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return modified main color if intent is passed, original color is preserved"}],"endTime":1687439715108,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/hooks/useTheme.test.tsx","startTime":1687439714361,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":526,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1687439716362,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1687439715120,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":68,"failureDetails":[],"failureMessages":[],"fullName":"Renders Layout properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders Layout properly"}],"endTime":1687439717795,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1687439716518,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":58,"failureDetails":[],"failureMessages":[],"fullName":"Renders Navbar properly","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders Navbar properly"}],"endTime":1687439718548,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1687439717807,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":230,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ControlGroup /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <ControlGroup /> properly"}],"endTime":1687439719963,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/control_group.test.tsx","startTime":1687439718560,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":55,"failureDetails":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1687439721123,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1687439719975,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":43,"failureDetails":[],"failureMessages":[],"fullName":"useLatestZIndex returns incremental z indexes","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"useLatestZIndex returns incremental z indexes"}],"endTime":1687439721874,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/hooks/useLatestZIndex.test.tsx","startTime":1687439721135,"status":"passed","summary":""}],"wasInterrupted":false}
1
+ {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":33,"numPassedTests":227,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":33,"numTotalTests":227,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1687941801920,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"duration":330,"failureDetails":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect />","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders empty <ReqoreMultiSelect />"},{"ancestorTitles":[],"duration":69,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value"},{"ancestorTitles":[],"duration":135,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> with default value, items can be removed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> with default value, items can be removed"},{"ancestorTitles":[],"duration":62,"failureDetails":[],"failureMessages":[],"fullName":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders disabled <ReqoreMultiSelect /> when items are empty and items CANNOT be created"},{"ancestorTitles":[],"duration":510,"failureDetails":[],"failureMessages":[],"fullName":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders empty <ReqoreMultiSelect /> when items are empty and items CAN be created"},{"ancestorTitles":[],"duration":1223,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and selects / deselects items from the list"},{"ancestorTitles":[],"duration":369,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched, opens up the list"},{"ancestorTitles":[],"duration":734,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list","invocations":1,"location":null,"numPassingAsserts":9,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created, opens up the list"},{"ancestorTitles":[],"duration":738,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list","invocations":1,"location":null,"numPassingAsserts":9,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and items can be searched and created using the ENTER key, opens up the list"},{"ancestorTitles":[],"duration":447,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and does not create new item on ENTER when not focused"},{"ancestorTitles":[],"duration":561,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and deselects an item using the ENTER key"},{"ancestorTitles":[],"duration":743,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes","invocations":1,"location":null,"numPassingAsserts":8,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onValueChange when value changes"},{"ancestorTitles":[],"duration":70,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemClick when an item is clicked"},{"ancestorTitles":[],"duration":787,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemAdded when an item is added","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemAdded when an item is added"},{"ancestorTitles":[],"duration":49,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreMultiSelect /> and calls onItemRemoved when an item is removed","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <ReqoreMultiSelect /> and calls onItemRemoved when an item is removed"}],"endTime":1687941821832,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/multiselect.test.tsx","startTime":1687941802485,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":134,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Input /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Input /> properly"},{"ancestorTitles":[],"duration":141,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Input /> with clear button properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Input /> with clear button properly"},{"ancestorTitles":[],"duration":35,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Input /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <Input /> cannot be cleared"},{"ancestorTitles":[],"duration":34,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Input /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Input /> cannot be cleared"},{"ancestorTitles":[],"duration":53,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> gets automatically focused"},{"ancestorTitles":[],"duration":38,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Input /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Input /> does not get automatically focused"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Input /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <Input /> does not get automatically focused"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> gets automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> does not get automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> does not get automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets automatically focused if its inside of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Input /> gets automatically focused if its inside of viewport"},{"ancestorTitles":[],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any letter is pressed"},{"ancestorTitles":[],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any letter is pressed 2"},{"ancestorTitles":[],"duration":23,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit is pressed"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit is pressed 2"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit or letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit or letter is pressed"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after any digit or letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after any digit or letter is pressed 2"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> gets focused after a specified shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Input /> gets focused after a specified shortcut is pressed"},{"ancestorTitles":[],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport"},{"ancestorTitles":[],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> does not get focused when typing in another input","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Input /> does not get focused when typing in another input"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Input /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Readonly <Input /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Input /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Disabled <Input /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Input /> is cleared when focused","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Input /> is cleared when focused"},{"ancestorTitles":[],"duration":240,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Input /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Input /> works"}],"endTime":1687941824067,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1687941821856,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":99,"failureDetails":[],"failureMessages":[],"fullName":"Renders <TextArea /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <TextArea /> properly"},{"ancestorTitles":[],"duration":128,"failureDetails":[],"failureMessages":[],"fullName":"Renders <TextArea /> with clear button properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <TextArea /> with clear button properly"},{"ancestorTitles":[],"duration":24,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <TextArea /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <TextArea /> cannot be cleared"},{"ancestorTitles":[],"duration":37,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Textarea /> cannot be cleared","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Textarea /> cannot be cleared"},{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> gets automatically focused"},{"ancestorTitles":[],"duration":28,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Textarea /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Readonly <Textarea /> does not get automatically focused"},{"ancestorTitles":[],"duration":27,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Textarea /> does not get automatically focused","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Disabled <Textarea /> does not get automatically focused"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> gets automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> does not get automatically focused if it's out of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> does not get automatically focused if it's out of viewport"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets automatically focused if its inside of viewport","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Textarea /> gets automatically focused if its inside of viewport"},{"ancestorTitles":[],"duration":20,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any letter is pressed"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any letter is pressed 2"},{"ancestorTitles":[],"duration":15,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit is pressed"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit is pressed 2","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit is pressed 2"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit or letter is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit or letter is pressed"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after any digit or letter is pressed 2","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after any digit or letter is pressed 2"},{"ancestorTitles":[],"duration":14,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> gets focused after a specified shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Textarea /> gets focused after a specified shortcut is pressed"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> does not get focused after a specified shortcut is pressed if it's not in Viewport, get's focused when in viewport"},{"ancestorTitles":[],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> does not get focused when typing in another input","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Textarea /> does not get focused when typing in another input"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Readonly <Textarea /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Readonly <Textarea /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Disabled <Textarea /> does not get focused when shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Disabled <Textarea /> does not get focused when shortcut is pressed"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"<Textarea /> is cleared when focused","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Textarea /> is cleared when focused"},{"ancestorTitles":[],"duration":222,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Textarea /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Textarea /> works"}],"endTime":1687941826210,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1687941824089,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":1961,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <Pagination />","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders default <Pagination />"},{"ancestorTitles":[],"duration":173,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with only 5 page buttons","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with only 5 page buttons"},{"ancestorTitles":[],"duration":36,"failureDetails":[],"failureMessages":[],"fullName":"Renders no <Pagination /> if only one page exists","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders no <Pagination /> if only one page exists"},{"ancestorTitles":[],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Renders no <Pagination /> if no items exist","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders no <Pagination /> if no items exist"},{"ancestorTitles":[],"duration":938,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> without control buttons","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> without control buttons"},{"ancestorTitles":[],"duration":94,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> without page buttons","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> without page buttons"},{"ancestorTitles":[],"duration":121,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with labels","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with labels"},{"ancestorTitles":[],"duration":116,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with custom labels","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with custom labels"},{"ancestorTitles":[],"duration":188,"failureDetails":[],"failureMessages":[],"fullName":"Renders list <Pagination /> with labels","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders list <Pagination /> with labels"},{"ancestorTitles":[],"duration":188,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with only 5 page buttons and start page 11","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with only 5 page buttons and start page 11"},{"ancestorTitles":[],"duration":675,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with custom number of items per page","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with custom number of items per page"},{"ancestorTitles":[],"duration":1525,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> as a list","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> as a list"},{"ancestorTitles":[],"duration":183,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with load more button and no load all button","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with load more button and no load all button"},{"ancestorTitles":[],"duration":2939,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with load all button","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with load all button"},{"ancestorTitles":[],"duration":3655,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> with load more button and auto load","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> with load more button and auto load"},{"ancestorTitles":[],"duration":1578,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> and changes pages with vertical scroll","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> and changes pages with vertical scroll"},{"ancestorTitles":[],"duration":1495,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Pagination /> and changes pages with horizontal scroll","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Pagination /> and changes pages with horizontal scroll"}],"endTime":1687941844068,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/pagination.test.tsx","startTime":1687941826227,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":241,"failureDetails":[],"failureMessages":[],"fullName":"Renders full <Tabs /> properly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders full <Tabs /> properly"},{"ancestorTitles":[],"duration":416,"failureDetails":[],"failureMessages":[],"fullName":"Renders shortened <Tabs /> properly","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"Renders shortened <Tabs /> properly"},{"ancestorTitles":[],"duration":48,"failureDetails":[],"failureMessages":[],"fullName":"Can select hidden <Tabs /> when shortened","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Can select hidden <Tabs /> when shortened"},{"ancestorTitles":[],"duration":92,"failureDetails":[],"failureMessages":[],"fullName":"Default active tab can be specified","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Default active tab can be specified"},{"ancestorTitles":[],"duration":115,"failureDetails":[],"failureMessages":[],"fullName":"Changes tab and runs callback","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Changes tab and runs callback"},{"ancestorTitles":[],"duration":112,"failureDetails":[],"failureMessages":[],"fullName":"Does not change tab and run callback when disabled","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Does not change tab and run callback when disabled"},{"ancestorTitles":[],"duration":86,"failureDetails":[],"failureMessages":[],"fullName":"Does not change tab when mounted and active tab is set","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Does not change tab when mounted and active tab is set"},{"ancestorTitles":[],"duration":158,"failureDetails":[],"failureMessages":[],"fullName":"Changes tab programatically and runs callback","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Changes tab programatically and runs callback"},{"ancestorTitles":[],"duration":138,"failureDetails":[],"failureMessages":[],"fullName":"Closable tab can be closed if not disabled","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Closable tab can be closed if not disabled"}],"endTime":1687941846556,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1687941844091,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":401,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Table /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders basic <Table /> properly"},{"ancestorTitles":[],"duration":277,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Table /> with grouped columns properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Table /> with grouped columns properly"},{"ancestorTitles":[],"duration":201,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Table /> with custom content","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Table /> with custom content"},{"ancestorTitles":[],"duration":512,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Table /> with predefined content","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders <Table /> with predefined content"},{"ancestorTitles":[],"duration":368,"failureDetails":[],"failureMessages":[],"fullName":"Sorting on <Table /> works properly","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Sorting on <Table /> works properly"},{"ancestorTitles":[],"duration":629,"failureDetails":[],"failureMessages":[],"fullName":"Rows on <Table /> can be selected","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Rows on <Table /> can be selected"},{"ancestorTitles":[],"duration":338,"failureDetails":[],"failureMessages":[],"fullName":"Rows on <Table /> cannot be selected if _selectId is missing","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Rows on <Table /> cannot be selected if _selectId is missing"},{"ancestorTitles":[],"duration":596,"failureDetails":[],"failureMessages":[],"fullName":"Rows on <Table /> are all selected/deselected when clicking on header","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Rows on <Table /> are all selected/deselected when clicking on header"},{"ancestorTitles":[],"duration":230,"failureDetails":[],"failureMessages":[],"fullName":"Cells on <Table /> are interactive","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Cells on <Table /> are interactive"}],"endTime":1687941851738,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1687941846602,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":490,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> properly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> properly"},{"ancestorTitles":[],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when items are empty","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders disabled <Dropdown /> when items are empty"},{"ancestorTitles":[],"duration":25,"failureDetails":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when items are not empty & disabled prop is true","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders disabled <Dropdown /> when items are not empty & disabled prop is true"},{"ancestorTitles":[],"duration":258,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> with custom component and custom handler","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> with custom component and custom handler"},{"ancestorTitles":[],"duration":194,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> is opened by default","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> is opened by default"},{"ancestorTitles":[],"duration":81,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and calls a function on item click, closes the dropdown","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> and calls a function on item click, closes the dropdown"},{"ancestorTitles":[],"duration":374,"failureDetails":[],"failureMessages":[],"fullName":"Renders filterable <Dropdown /> and filters items correctly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders filterable <Dropdown /> and filters items correctly"},{"ancestorTitles":[],"duration":253,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and updates its items when state changes, does not close dropdown","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders <Dropdown /> and updates its items when state changes, does not close dropdown"}],"endTime":1687941854617,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1687941851759,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":68,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns all pages","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"useReqorePaging returns all pages"},{"ancestorTitles":[],"duration":28,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging with default start page","invocations":1,"location":null,"numPassingAsserts":8,"retryReasons":[],"status":"passed","title":"useReqorePaging with default start page"},{"ancestorTitles":[],"duration":22,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging specified number of pages","invocations":1,"location":null,"numPassingAsserts":8,"retryReasons":[],"status":"passed","title":"useReqorePaging specified number of pages"},{"ancestorTitles":[],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns 1 page when items are empty","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqorePaging returns 1 page when items are empty"},{"ancestorTitles":[],"duration":10,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns correct number of rounded pages","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"useReqorePaging returns correct number of rounded pages"},{"ancestorTitles":[],"duration":16,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns items per page","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqorePaging returns items per page"},{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns new items and pages when size of data change, current page is set to 1","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"useReqorePaging returns new items and pages when size of data change, current page is set to 1"},{"ancestorTitles":[],"duration":17,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging does not return new items and pages when data change","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"useReqorePaging does not return new items and pages when data change"},{"ancestorTitles":[],"duration":26,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging page navigation works correctly","invocations":1,"location":null,"numPassingAsserts":14,"retryReasons":[],"status":"passed","title":"useReqorePaging page navigation works correctly"},{"ancestorTitles":[],"duration":23,"failureDetails":[],"failureMessages":[],"fullName":"useReqorePaging returns correct number of items with infinite loading","invocations":1,"location":null,"numPassingAsserts":10,"retryReasons":[],"status":"passed","title":"useReqorePaging returns correct number of items with infinite loading"}],"endTime":1687941855754,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/hooks/useReqorePaging.test.tsx","startTime":1687941854630,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":1025,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Collection /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders basic <Collection /> properly"},{"ancestorTitles":[],"duration":787,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> items can be filtered","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"<Collection /> items can be filtered"},{"ancestorTitles":[],"duration":695,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> filter is properly removed by the clear button","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"<Collection /> filter is properly removed by the clear button"},{"ancestorTitles":[],"duration":313,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> filter is focused when a shortcut is pressed","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"<Collection /> filter is focused when a shortcut is pressed"},{"ancestorTitles":[],"duration":45,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> shows no data message when empty","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Collection /> shows no data message when empty"},{"ancestorTitles":[],"duration":472,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> can be sorted","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Collection /> can be sorted"},{"ancestorTitles":[],"duration":589,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has default paging","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Collection /> has default paging"},{"ancestorTitles":[],"duration":511,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has list paging","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Collection /> has list paging"},{"ancestorTitles":[],"duration":718,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has infinite paging","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"<Collection /> has infinite paging"},{"ancestorTitles":[],"duration":2921,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has custom paging","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"<Collection /> has custom paging"},{"ancestorTitles":[],"duration":440,"failureDetails":[],"failureMessages":[],"fullName":"<Collection /> has 2 paging controls","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"<Collection /> has 2 paging controls"}],"endTime":1687941865776,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1687941855775,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":56,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Panel /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders basic <Panel /> properly"},{"ancestorTitles":[],"duration":44,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Panel /> with title properly","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders basic <Panel /> with title properly"},{"ancestorTitles":[],"duration":128,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Panel /> that is collapsed by default and can be expanded","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders basic <Panel /> that is collapsed by default and can be expanded"},{"ancestorTitles":[],"duration":36,"failureDetails":[],"failureMessages":[],"fullName":"Renders closable <Panel /> properly","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders closable <Panel /> properly"},{"ancestorTitles":[],"duration":262,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Panel /> with actions","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Panel /> with actions"},{"ancestorTitles":[],"duration":20,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Panel /> without actions group if all actions are not shown","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Panel /> without actions group if all actions are not shown"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Panel /> without title & bottom actions if all actions are not shown, there is no icon, & title is not collapsible","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders <Panel /> without title & bottom actions if all actions are not shown, there is no icon, & title is not collapsible"},{"ancestorTitles":[],"duration":193,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Panel /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Panel /> works"},{"ancestorTitles":[],"duration":65,"failureDetails":[],"failureMessages":[],"fullName":"Custom control props on <Panel />","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Custom control props on <Panel />"}],"endTime":1687941867515,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1687941865793,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":178,"failureDetails":[],"failureMessages":[],"fullName":"Shows popover on hover, hides on leave","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Shows popover on hover, hides on leave"},{"ancestorTitles":[],"duration":36,"failureDetails":[],"failureMessages":[],"fullName":"Shows popover on click, hides only on click away","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows popover on click, hides only on click away"},{"ancestorTitles":[],"duration":33,"failureDetails":[],"failureMessages":[],"fullName":"Shows custom content","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Shows custom content"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"Runs callback function","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Runs callback function"},{"ancestorTitles":[],"duration":37,"failureDetails":[],"failureMessages":[],"fullName":"Shows the popover after a local delay, ignoring global delay","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows the popover after a local delay, ignoring global delay"},{"ancestorTitles":[],"duration":34,"failureDetails":[],"failureMessages":[],"fullName":"Shows the popover after a global delay","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows the popover after a global delay"},{"ancestorTitles":[],"duration":39,"failureDetails":[],"failureMessages":[],"fullName":"Shows the popover with blur","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Shows the popover with blur"},{"ancestorTitles":[],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"Does not show the popover with delay if time not reached","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Does not show the popover with delay if time not reached"},{"ancestorTitles":[],"duration":84,"failureDetails":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "},{"ancestorTitles":[],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Correctly passes popover data for non-opened popover","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Correctly passes popover data for non-opened popover"},{"ancestorTitles":[],"duration":69,"failureDetails":[],"failureMessages":[],"fullName":"Correctly passes popover data for opened popover","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Correctly passes popover data for opened popover"}],"endTime":1687941869241,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1687941867530,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":132,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Button /> properly"},{"ancestorTitles":[],"duration":22,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> using `label`","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> using `label`"},{"ancestorTitles":[],"duration":185,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with size properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with size properly"},{"ancestorTitles":[],"duration":55,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with icon properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Button /> with icon properly"},{"ancestorTitles":[],"duration":289,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with intent properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with intent properly"},{"ancestorTitles":[],"duration":48,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with right icon properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with right icon properly"},{"ancestorTitles":[],"duration":57,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with icon and right icon properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with icon and right icon properly"},{"ancestorTitles":[],"duration":20,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with onClick function","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with onClick function"},{"ancestorTitles":[],"duration":97,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with a 0 badge","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with a 0 badge"},{"ancestorTitles":[],"duration":25,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with a string badge","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with a string badge"},{"ancestorTitles":[],"duration":23,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with a Tag props badge","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with a Tag props badge"},{"ancestorTitles":[],"duration":41,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Button /> with multiple badges","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Button /> with multiple badges"},{"ancestorTitles":[],"duration":322,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Button /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Button /> works"}],"endTime":1687941871818,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1687941869254,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":246,"failureDetails":[],"failureMessages":[],"fullName":"Renders sidebar","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders sidebar"},{"ancestorTitles":[],"duration":92,"failureDetails":[],"failureMessages":[],"fullName":"Sidebar can be collapsed","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Sidebar can be collapsed"},{"ancestorTitles":[],"duration":83,"failureDetails":[],"failureMessages":[],"fullName":"Can open submenu manually","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Can open submenu manually"},{"ancestorTitles":[],"duration":77,"failureDetails":[],"failureMessages":[],"fullName":"Submenu opens automatically if path matches","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Submenu opens automatically if path matches"},{"ancestorTitles":[],"duration":165,"failureDetails":[],"failureMessages":[],"fullName":"Bookmarks can be added and removed","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Bookmarks can be added and removed"},{"ancestorTitles":[],"duration":35,"failureDetails":[],"failureMessages":[],"fullName":"Bookmarks clicks are not propagated through","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Bookmarks clicks are not propagated through"},{"ancestorTitles":[],"duration":62,"failureDetails":[],"failureMessages":[],"fullName":"Renders item as <p> element with onClick","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders item as <p> element with onClick"},{"ancestorTitles":[],"duration":217,"failureDetails":[],"failureMessages":[],"fullName":"Renders floating sidebar with item as <p> element with onClick, closes on item click","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders floating sidebar with item as <p> element with onClick, closes on item click"},{"ancestorTitles":[],"duration":56,"failureDetails":[],"failureMessages":[],"fullName":"Renders custom item at the top","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders custom item at the top"}],"endTime":1687941873724,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1687941871832,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":162,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Modal /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders basic <Modal /> properly"},{"ancestorTitles":[],"duration":11,"failureDetails":[],"failureMessages":[],"fullName":"Does not renders <Modal /> if its not open","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Does not renders <Modal /> if its not open"},{"ancestorTitles":[],"duration":10,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Modal /> with custom dimensions","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Modal /> with custom dimensions"},{"ancestorTitles":[],"duration":497,"failureDetails":[],"failureMessages":[],"fullName":"Renders confirmation <Modal /> ","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders confirmation <Modal /> "},{"ancestorTitles":[],"duration":120,"failureDetails":[],"failureMessages":[],"fullName":"Always renders confirmation <Modal /> properly above a normal modal","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Always renders confirmation <Modal /> properly above a normal modal"}],"endTime":1687941875779,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1687941873736,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":1921,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer />","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer />"},{"ancestorTitles":[],"duration":2642,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer /> with both control wrappers","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer /> with both control wrappers"},{"ancestorTitles":[],"duration":2429,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer /> with both control wrappers, one included in children","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer /> with both control wrappers, one included in children"},{"ancestorTitles":[],"duration":169,"failureDetails":[],"failureMessages":[],"fullName":"Renders default <PaginationContainer /> with onPageChange callback","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders default <PaginationContainer /> with onPageChange callback"}],"endTime":1687941884790,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/containers/paging.test.tsx","startTime":1687941875792,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":253,"failureDetails":[],"failureMessages":[],"fullName":"Adds notifications and dismisses them automatically","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Adds notifications and dismisses them automatically"},{"ancestorTitles":[],"duration":36,"failureDetails":[],"failureMessages":[],"fullName":"Adds a notification and updates it","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Adds a notification and updates it"},{"ancestorTitles":[],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Notification has a click event","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Notification has a click event"},{"ancestorTitles":[],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Notification has a close event","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Notification has a close event"},{"ancestorTitles":[],"duration":19,"failureDetails":[],"failureMessages":[],"fullName":"Notification has a finish event","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Notification has a finish event"},{"ancestorTitles":[],"duration":168,"failureDetails":[],"failureMessages":[],"fullName":"Maximum of 5 notifications is shown at once","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Maximum of 5 notifications is shown at once"}],"endTime":1687941886121,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1687941884804,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":231,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tag /> properly"},{"ancestorTitles":[],"duration":90,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> group properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Tag /> group properly"},{"ancestorTitles":[],"duration":28,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> without remove button if disabled","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tag /> without remove button if disabled"},{"ancestorTitles":[],"duration":35,"failureDetails":[],"failureMessages":[],"fullName":"Fires onClick and onRemoveClick <Tag /> events","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Fires onClick and onRemoveClick <Tag /> events"},{"ancestorTitles":[],"duration":41,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tag /> with the label key","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tag /> with the label key"}],"endTime":1687941887776,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1687941886139,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":49,"failureDetails":[],"failureMessages":[],"fullName":"Does not render <Drawer /> if not open","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Does not render <Drawer /> if not open"},{"ancestorTitles":[],"duration":103,"failureDetails":[],"failureMessages":[],"fullName":"Renders opened <Drawer /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders opened <Drawer /> properly"},{"ancestorTitles":[],"duration":141,"failureDetails":[],"failureMessages":[],"fullName":"Renders hidable <Drawer /> properly","invocations":1,"location":null,"numPassingAsserts":7,"retryReasons":[],"status":"passed","title":"Renders hidable <Drawer /> properly"},{"ancestorTitles":[],"duration":54,"failureDetails":[],"failureMessages":[],"fullName":"Renders closable <Drawer /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders closable <Drawer /> properly"},{"ancestorTitles":[],"duration":47,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Drawer /> with interactive backdrop","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Drawer /> with interactive backdrop"},{"ancestorTitles":[],"duration":112,"failureDetails":[],"failureMessages":[],"fullName":"<Drawer /> actions are changed properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Drawer /> actions are changed properly"}],"endTime":1687941889453,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1687941887788,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":396,"failureDetails":[],"failureMessages":[],"fullName":"Renders basic <Tree /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders basic <Tree /> properly"},{"ancestorTitles":[],"duration":180,"failureDetails":[],"failureMessages":[],"fullName":"Shows textarea for <Tree /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Shows textarea for <Tree /> properly"},{"ancestorTitles":[],"duration":456,"failureDetails":[],"failureMessages":[],"fullName":"<Tree /> items can be expanded and collapsed","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Tree /> items can be expanded and collapsed"},{"ancestorTitles":[],"duration":246,"failureDetails":[],"failureMessages":[],"fullName":"Shows types for <Tree /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Shows types for <Tree /> properly"},{"ancestorTitles":[],"duration":621,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Tree /> with clickable items","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Tree /> with clickable items"}],"endTime":1687941892083,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1687941889465,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":214,"failureDetails":[],"failureMessages":[],"fullName":"Renders full <Breadcrumbs /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders full <Breadcrumbs /> properly"},{"ancestorTitles":[],"duration":47,"failureDetails":[],"failureMessages":[],"fullName":"Renders shortened <Breadcrumbs /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders shortened <Breadcrumbs /> properly"},{"ancestorTitles":[],"duration":393,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Breadcrumbs /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Breadcrumbs /> works"}],"endTime":1687941893442,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1687941892095,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":221,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Menu /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Menu /> properly"},{"ancestorTitles":[],"duration":69,"failureDetails":[],"failureMessages":[],"fullName":"<Menu /> item can be clicked","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"<Menu /> item can be clicked"},{"ancestorTitles":[],"duration":104,"failureDetails":[],"failureMessages":[],"fullName":"<Menu /> item has right clickable button","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"<Menu /> item has right clickable button"}],"endTime":1687941894570,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1687941893454,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":186,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Message /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <Message /> properly"},{"ancestorTitles":[],"duration":25,"failureDetails":[],"failureMessages":[],"fullName":"Runs onFinish on message after duration","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Runs onFinish on message after duration"},{"ancestorTitles":[],"duration":33,"failureDetails":[],"failureMessages":[],"fullName":"Runs onClose when closed","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Runs onClose when closed"},{"ancestorTitles":[],"duration":145,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Message /> works","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Tooltip on <Message /> works"}],"endTime":1687941896100,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1687941894581,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":47,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreEffect /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <ReqoreEffect /> properly"},{"ancestorTitles":[],"duration":21,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ReqoreTextEffect /> properly","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"Renders <ReqoreTextEffect /> properly"}],"endTime":1687941896839,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/effect.test.tsx","startTime":1687941896111,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":60,"failureDetails":[],"failureMessages":[],"fullName":"<Heading /> renders properly","invocations":1,"location":null,"numPassingAsserts":12,"retryReasons":[],"status":"passed","title":"<Heading /> renders properly"},{"ancestorTitles":[],"duration":472,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Heading /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Heading /> works"}],"endTime":1687941898087,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/heading.test.tsx","startTime":1687941896852,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":203,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders <Checkbox /> properly"},{"ancestorTitles":[],"duration":219,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Checkbox /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Checkbox /> works"}],"endTime":1687941899726,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1687941898329,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":57,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Icon /> properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <Icon /> properly"},{"ancestorTitles":[],"duration":13,"failureDetails":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders empty <Icon /> if icon does not exist"},{"ancestorTitles":[],"duration":170,"failureDetails":[],"failureMessages":[],"fullName":"Tooltip on <Icon /> works","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Tooltip on <Icon /> works"}],"endTime":1687941901061,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1687941899739,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":18,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return the default theme","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return the default theme"},{"ancestorTitles":[],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return modified main intent color, original color is preserved","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return modified main intent color, original color is preserved"},{"ancestorTitles":[],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return modified main custom color, original color is preserved","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return modified main custom color, original color is preserved"},{"ancestorTitles":[],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"useReqoreTheme should return modified main color if intent is passed, original color is preserved","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"useReqoreTheme should return modified main color if intent is passed, original color is preserved"}],"endTime":1687941901764,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/hooks/useTheme.test.tsx","startTime":1687941901072,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":189,"failureDetails":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1687941902631,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1687941901776,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":60,"failureDetails":[],"failureMessages":[],"fullName":"Renders Layout properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders Layout properly"}],"endTime":1687941903375,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1687941902642,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":55,"failureDetails":[],"failureMessages":[],"fullName":"Renders Navbar properly","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"Renders Navbar properly"}],"endTime":1687941904089,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1687941903396,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":231,"failureDetails":[],"failureMessages":[],"fullName":"Renders <ControlGroup /> properly","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"Renders <ControlGroup /> properly"}],"endTime":1687941905404,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/control_group.test.tsx","startTime":1687941904100,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":49,"failureDetails":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1687941906485,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1687941905416,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"duration":41,"failureDetails":[],"failureMessages":[],"fullName":"useLatestZIndex returns incremental z indexes","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"useLatestZIndex returns incremental z indexes"}],"endTime":1687941907188,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/hooks/useLatestZIndex.test.tsx","startTime":1687941906507,"status":"passed","summary":""}],"wasInterrupted":false}