@qoretechnologies/reqore 0.25.8 → 0.25.10

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.
Files changed (53) hide show
  1. package/__tests__/dropdown.test.tsx +133 -12
  2. package/dist/components/Collection/index.d.ts +2 -2
  3. package/dist/components/Collection/index.d.ts.map +1 -1
  4. package/dist/components/Collection/index.js +6 -6
  5. package/dist/components/Collection/index.js.map +1 -1
  6. package/dist/components/Collection/item.d.ts +2 -2
  7. package/dist/components/Collection/item.d.ts.map +1 -1
  8. package/dist/components/Collection/item.js +6 -3
  9. package/dist/components/Collection/item.js.map +1 -1
  10. package/dist/components/Dropdown/index.d.ts +8 -7
  11. package/dist/components/Dropdown/index.d.ts.map +1 -1
  12. package/dist/components/Dropdown/index.js +12 -5
  13. package/dist/components/Dropdown/index.js.map +1 -1
  14. package/dist/components/Dropdown/item.d.ts +2 -2
  15. package/dist/components/Dropdown/item.d.ts.map +1 -1
  16. package/dist/components/Dropdown/item.js.map +1 -1
  17. package/dist/components/Dropdown/list.d.ts +9 -2
  18. package/dist/components/Dropdown/list.d.ts.map +1 -1
  19. package/dist/components/Dropdown/list.js +13 -5
  20. package/dist/components/Dropdown/list.js.map +1 -1
  21. package/dist/components/InternalPopover/index.d.ts.map +1 -1
  22. package/dist/components/InternalPopover/index.js +0 -1
  23. package/dist/components/InternalPopover/index.js.map +1 -1
  24. package/dist/components/Panel/index.d.ts +3 -2
  25. package/dist/components/Panel/index.d.ts.map +1 -1
  26. package/dist/components/Panel/index.js +16 -17
  27. package/dist/components/Panel/index.js.map +1 -1
  28. package/dist/components/Popover/index.d.ts +1 -1
  29. package/dist/components/Popover/index.d.ts.map +1 -1
  30. package/dist/components/Popover/index.js +4 -2
  31. package/dist/components/Popover/index.js.map +1 -1
  32. package/dist/hooks/usePopover.d.ts.map +1 -1
  33. package/dist/hooks/usePopover.js +23 -9
  34. package/dist/hooks/usePopover.js.map +1 -1
  35. package/dist/hooks/useWhyDidYouUpdate.d.ts +2 -0
  36. package/dist/hooks/useWhyDidYouUpdate.d.ts.map +1 -0
  37. package/dist/hooks/useWhyDidYouUpdate.js +47 -0
  38. package/dist/hooks/useWhyDidYouUpdate.js.map +1 -0
  39. package/package.json +1 -1
  40. package/src/components/Collection/index.tsx +3 -2
  41. package/src/components/Collection/item.tsx +6 -3
  42. package/src/components/Dropdown/index.tsx +62 -36
  43. package/src/components/Dropdown/item.tsx +3 -6
  44. package/src/components/Dropdown/list.tsx +82 -56
  45. package/src/components/InternalPopover/index.tsx +0 -2
  46. package/src/components/Panel/index.tsx +71 -59
  47. package/src/components/Popover/index.tsx +53 -38
  48. package/src/hooks/usePopover.tsx +34 -20
  49. package/src/hooks/useWhyDidYouUpdate.ts +32 -0
  50. package/src/stories/Collection/Collection.stories.tsx +1 -1
  51. package/src/stories/Dropdown/Dropdown.stories.tsx +62 -34
  52. package/src/stories/Panel/Panel.stories.tsx +9 -4
  53. package/tests.json +1 -1
@@ -63,30 +63,38 @@ const usePopover = ({
63
63
  [popovers, current]
64
64
  );
65
65
 
66
+ const openPopover = () => {
67
+ addPopover?.({
68
+ id: current,
69
+ content,
70
+ targetElement,
71
+ placement,
72
+ noArrow,
73
+ useTargetWidth,
74
+ closeOnOutsideClick,
75
+ closeOnAnyClick: handler === 'hover' || handler === 'hoverStay',
76
+ ...rest,
77
+ });
78
+
79
+ if (rest?.blur > 0) {
80
+ targetElement.style.position = 'relative';
81
+ targetElement.style.zIndex = '999999';
82
+ }
83
+ };
84
+
66
85
  const _addPopover = () => {
67
86
  if (currentPopover) {
68
87
  if (handler !== 'hoverStay') {
69
88
  _removePopover?.();
70
89
  }
71
90
  } else if (show) {
72
- timeout = setTimeout(() => {
73
- addPopover?.({
74
- id: current,
75
- content,
76
- targetElement,
77
- placement,
78
- noArrow,
79
- useTargetWidth,
80
- closeOnOutsideClick,
81
- closeOnAnyClick: handler === 'hover' || handler === 'hoverStay',
82
- ...rest,
83
- });
84
-
85
- if (rest?.blur > 0) {
86
- targetElement.style.position = 'relative';
87
- targetElement.style.zIndex = '999999';
88
- }
89
- }, delay || 0);
91
+ if (delay) {
92
+ timeout = setTimeout(() => {
93
+ openPopover();
94
+ }, delay);
95
+ } else {
96
+ openPopover();
97
+ }
90
98
  }
91
99
  };
92
100
 
@@ -119,7 +127,7 @@ const usePopover = ({
119
127
  ...rest,
120
128
  });
121
129
  }
122
- }, [content?.toString()]);
130
+ }, [content]);
123
131
 
124
132
  useEffect(() => {
125
133
  if (openOnMount && targetElement) {
@@ -155,7 +163,13 @@ const usePopover = ({
155
163
  }
156
164
  }
157
165
  };
158
- }, [targetElement?.toString(), content?.toString(), current, currentPopover]);
166
+ }, [
167
+ targetElement?.toString(),
168
+ //@ts-ignore
169
+ content,
170
+ current,
171
+ currentPopover,
172
+ ]);
159
173
 
160
174
  useUnmount(() => {
161
175
  cancelTimeout();
@@ -0,0 +1,32 @@
1
+ import { useEffect, useRef } from 'react';
2
+
3
+ export function useWhyDidYouUpdate(name, props) {
4
+ // Get a mutable ref object where we can store props ...
5
+ // ... for comparison next time this hook runs.
6
+ const previousProps: any = useRef();
7
+ useEffect(() => {
8
+ if (previousProps.current) {
9
+ // Get all keys from previous and current props
10
+ const allKeys = Object.keys({ ...previousProps.current, ...props });
11
+ // Use this object to keep track of changed props
12
+ const changesObj = {};
13
+ // Iterate through keys
14
+ allKeys.forEach((key) => {
15
+ // If previous is different from current
16
+ if (previousProps.current[key] !== props[key]) {
17
+ // Add to changesObj
18
+ changesObj[key] = {
19
+ from: previousProps.current[key],
20
+ to: props[key],
21
+ };
22
+ }
23
+ });
24
+ // If changesObj not empty then output to console
25
+ if (Object.keys(changesObj).length) {
26
+ console.log('[why-did-you-update]', name, changesObj);
27
+ }
28
+ }
29
+ // Finally update previousProps with current props for next hook call
30
+ previousProps.current = props;
31
+ });
32
+ }
@@ -72,7 +72,7 @@ const Template: Story<IReqoreCollectionProps> = (args) => {
72
72
  return (
73
73
  <ReqoreCollection
74
74
  {...args}
75
- actions={[{ label: 'Custom action', icon: 'Home7Line' }, { actions: [{ label: 'Test' }] }]}
75
+ actions={[{ label: 'Custom action', icon: 'Home7Line' }, { actions: [{ value: 'Test' }] }]}
76
76
  />
77
77
  );
78
78
  };
@@ -1,26 +1,27 @@
1
1
  import { Meta, Story } from '@storybook/react/types-6-0';
2
+ import { useState } from 'react';
2
3
  import ReqoreButton from '../../components/Button';
3
4
  import { IReqoreDropdownProps } from '../../components/Dropdown';
4
- import { IReqoreInputProps } from '../../components/Input';
5
- import { ReqoreControlGroup, ReqoreDropdown, ReqoreInput } from '../../index';
5
+ import { ReqoreControlGroup, ReqoreDropdown, ReqoreInput, ReqoreTag } from '../../index';
6
6
  import { argManager } from '../utils/args';
7
7
 
8
- const { createArg } = argManager<IReqoreDropdownProps<IReqoreInputProps>>();
8
+ const { createArg, disableArg } = argManager<IReqoreDropdownProps>();
9
9
 
10
10
  export default {
11
11
  title: 'Components/Dropdown',
12
+ parameters: {
13
+ chromatic: {
14
+ delay: 500,
15
+ },
16
+ },
12
17
  argTypes: {
18
+ ...disableArg('multiSelect'),
13
19
  ...createArg('component', {
14
20
  defaultValue: ReqoreButton,
15
21
  table: {
16
22
  disable: true,
17
23
  },
18
24
  }),
19
- ...createArg('componentProps', {
20
- table: {
21
- disable: true,
22
- },
23
- }),
24
25
  ...createArg('filterable', {
25
26
  defaultValue: true,
26
27
  name: 'Filterable',
@@ -34,96 +35,121 @@ export default {
34
35
  defaultValue: [
35
36
  {
36
37
  selected: true,
37
- label: 'Hello',
38
+ value: 'Hello',
38
39
  icon: 'SunCloudyLine',
39
40
  },
40
41
  {
41
- label: 'How are ya, I am super long item and I am not going to fit in the dropdown',
42
+ value: 'How are ya, I am super long item and I am not going to fit in the dropdown',
42
43
  icon: 'BatteryChargeFill',
43
44
  },
44
45
  {
45
46
  disabled: true,
46
- label: 'i aM diSAblEd',
47
+ value: 'i aM diSAblEd',
47
48
  icon: 'StopCircleLine',
48
49
  },
49
50
  {
50
51
  selected: true,
51
- label: 'Hello',
52
+ value: 'Hello',
52
53
  icon: 'SunCloudyLine',
53
54
  },
54
55
  {
55
- label: 'How are ya',
56
+ value: 'How are ya',
56
57
  icon: 'BatteryChargeFill',
57
58
  },
58
59
  {
59
60
  disabled: true,
60
- label: 'i aM diSAblEd',
61
+ value: 'i aM diSAblEd',
61
62
  icon: 'StopCircleLine',
62
63
  },
63
64
  {
64
65
  selected: true,
65
- label: 'Hello',
66
+ value: 'Hello',
66
67
  icon: 'SunCloudyLine',
67
68
  },
68
69
  {
69
- label: 'How are ya',
70
+ value: 'How are ya',
70
71
  icon: 'BatteryChargeFill',
71
72
  },
72
73
  {
73
74
  disabled: true,
74
- label: 'i aM diSAblEd',
75
+ value: 'i aM diSAblEd',
75
76
  icon: 'StopCircleLine',
76
77
  },
77
78
  {
78
79
  selected: true,
79
- label: 'Hello',
80
+ value: 'Hello',
80
81
  icon: 'SunCloudyLine',
81
82
  },
82
83
  {
83
- label: 'How are ya',
84
+ value: 'How are ya',
84
85
  icon: 'BatteryChargeFill',
85
86
  },
86
87
  {
87
88
  disabled: true,
88
- label: 'i aM diSAblEd',
89
+ value: 'i aM diSAblEd',
89
90
  icon: 'StopCircleLine',
90
91
  },
91
92
  {
92
93
  selected: true,
93
- label: 'Hello',
94
+ value: 'Hello',
94
95
  icon: 'SunCloudyLine',
95
96
  },
96
97
  {
97
- label: 'How are ya',
98
+ value: 'How are ya',
98
99
  icon: 'BatteryChargeFill',
99
100
  },
100
101
  {
101
102
  disabled: true,
102
- label: 'i aM diSAblEd',
103
+ value: 'i aM diSAblEd',
103
104
  icon: 'StopCircleLine',
104
105
  },
105
106
  {
106
107
  selected: true,
107
- label: 'Hello',
108
+ value: 'Hello',
108
109
  icon: 'SunCloudyLine',
109
110
  },
110
111
  {
111
- label: 'How are ya',
112
+ value: 'How are ya',
112
113
  icon: 'BatteryChargeFill',
113
114
  },
114
115
  {
115
116
  disabled: true,
116
- label: 'i aM diSAblEd',
117
+ value: 'i aM diSAblEd',
117
118
  icon: 'StopCircleLine',
118
119
  },
119
120
  ],
120
121
  }),
121
122
  },
122
- } as Meta<IReqoreDropdownProps<IReqoreInputProps>>;
123
+ } as Meta<IReqoreDropdownProps>;
124
+
125
+ const Template: Story<IReqoreDropdownProps> = (args: IReqoreDropdownProps) => {
126
+ const [selected, setSelected] = useState<string[]>(['Item 3', 'Item 6']);
127
+
128
+ if (args.multiSelect) {
129
+ return (
130
+ <>
131
+ <ReqoreControlGroup>
132
+ <ReqoreDropdown
133
+ label='Multi Select'
134
+ multiSelect
135
+ isDefaultOpen
136
+ onItemSelect={({ label }) => setSelected([...selected, label])}
137
+ items={Array(13)
138
+ .fill(null)
139
+ .map((_, i) => ({
140
+ label: `Item ${i}`,
141
+ value: `item-${i}`,
142
+ selected: selected.includes(`Item ${i}`),
143
+ }))}
144
+ />
145
+ {selected.map((item, index) => (
146
+ <ReqoreTag label={item} key={index} />
147
+ ))}
148
+ </ReqoreControlGroup>
149
+ </>
150
+ );
151
+ }
123
152
 
124
- const Template: Story<IReqoreDropdownProps<IReqoreInputProps>> = (
125
- args: IReqoreDropdownProps<IReqoreInputProps>
126
- ) => {
127
153
  return (
128
154
  <>
129
155
  <ReqoreControlGroup>
@@ -141,7 +167,7 @@ const Template: Story<IReqoreDropdownProps<IReqoreInputProps>> = (
141
167
  caretPosition='right'
142
168
  label='Open By Default'
143
169
  {...args}
144
- componentProps={{ placeholder: 'Fluid component' }}
170
+ placeholder='Fluid component'
145
171
  isDefaultOpen
146
172
  useTargetWidth
147
173
  />
@@ -154,7 +180,9 @@ export const Basic = Template.bind({});
154
180
  export const CustomComponent = Template.bind({});
155
181
  CustomComponent.args = {
156
182
  component: ReqoreInput,
157
- componentProps: {
158
- placeholder: 'Custom component',
159
- },
183
+ placeholder: 'Custom component',
184
+ };
185
+ export const MultiSelect = Template.bind({});
186
+ MultiSelect.args = {
187
+ multiSelect: true,
160
188
  };
@@ -68,8 +68,8 @@ const Template: Story<IReqorePanelProps> = (args: IReqorePanelProps) => {
68
68
  {
69
69
  label: 'More actions',
70
70
  actions: [
71
- { label: 'Sub Test', icon: 'FileDownloadLine' },
72
- { label: 'Sub Test 2', icon: 'FileDownloadLine', intent: 'success' },
71
+ { value: 'Sub Test', icon: 'FileDownloadLine' },
72
+ { value: 'Sub Test 2', icon: 'FileDownloadLine', intent: 'success' },
73
73
  ],
74
74
  intent: 'info',
75
75
  },
@@ -80,8 +80,8 @@ const Template: Story<IReqorePanelProps> = (args: IReqorePanelProps) => {
80
80
  label: 'More actions',
81
81
  position: 'right',
82
82
  actions: [
83
- { label: 'Sub Test', icon: 'FileDownloadLine', intent: 'success' },
84
- { label: 'Sub Test 2', icon: 'FileDownloadLine' },
83
+ { value: 'Sub Test', icon: 'FileDownloadLine', intent: 'success' },
84
+ { value: 'Sub Test 2', icon: 'FileDownloadLine' },
85
85
  ],
86
86
  },
87
87
  ]}
@@ -128,3 +128,8 @@ export const NoLabel: Story<IReqorePanelProps> = Template.bind({});
128
128
  NoLabel.args = {
129
129
  label: undefined,
130
130
  };
131
+
132
+ export const Opaque: Story<IReqorePanelProps> = Template.bind({});
133
+ Opaque.args = {
134
+ opacity: 0,
135
+ };
package/tests.json CHANGED
@@ -1 +1 @@
1
- {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":24,"numPassedTests":100,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":24,"numTotalTests":100,"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":1669382688694,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Table /> properly","location":null,"status":"passed","title":"Renders basic <Table /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with grouped columns properly","location":null,"status":"passed","title":"Renders <Table /> with grouped columns properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with custom content","location":null,"status":"passed","title":"Renders <Table /> with custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with predefined content","location":null,"status":"passed","title":"Renders <Table /> with predefined content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sorting on <Table /> works properly","location":null,"status":"passed","title":"Sorting on <Table /> works properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> can be selected","location":null,"status":"passed","title":"Rows on <Table /> can be selected"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> cannot be selected if _selectId is missing","location":null,"status":"passed","title":"Rows on <Table /> cannot be selected if _selectId is missing"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> are all selected/deselected when clicking on header","location":null,"status":"passed","title":"Rows on <Table /> are all selected/deselected when clicking on header"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Cells on <Table /> are interactive","location":null,"status":"passed","title":"Cells on <Table /> are interactive"}],"endTime":1669382701246,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1669382689129,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Tabs /> properly","location":null,"status":"passed","title":"Renders full <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Tabs /> properly","location":null,"status":"passed","title":"Renders shortened <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Default active tab can be specified","location":null,"status":"passed","title":"Default active tab can be specified"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab and runs callback","location":null,"status":"passed","title":"Changes tab and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not change tab and run callback when disabled","location":null,"status":"passed","title":"Does not change tab and run callback when disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab programatically and runs callback","location":null,"status":"passed","title":"Changes tab programatically and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Closable tab can be closed if not disabled","location":null,"status":"passed","title":"Closable tab can be closed if not disabled"}],"endTime":1669382702569,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1669382701273,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders sidebar","location":null,"status":"passed","title":"Renders sidebar"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sidebar can be collapsed","location":null,"status":"passed","title":"Sidebar can be collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Can open submenu manually","location":null,"status":"passed","title":"Can open submenu manually"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Submenu opens automatically if path matches","location":null,"status":"passed","title":"Submenu opens automatically if path matches"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks can be added and removed","location":null,"status":"passed","title":"Bookmarks can be added and removed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks clicks are not propagated through","location":null,"status":"passed","title":"Bookmarks clicks are not propagated through"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders item as <p> element with onClick","location":null,"status":"passed","title":"Renders item as <p> element with onClick"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders floating sidebar with item as <p> element with onClick, closes on item click","location":null,"status":"passed","title":"Renders floating sidebar with item as <p> element with onClick, closes on item click"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders custom item at the top","location":null,"status":"passed","title":"Renders custom item at the top"}],"endTime":1669382703759,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1669382702591,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> properly","location":null,"status":"passed","title":"Renders <Dropdown /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when children are empty","location":null,"status":"passed","title":"Renders disabled <Dropdown /> when children are empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> with custom component and custom handler","location":null,"status":"passed","title":"Renders <Dropdown /> with custom component and custom handler"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> is opened by default","location":null,"status":"passed","title":"Renders <Dropdown /> is opened by default"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders filterable <Dropdown /> and filters items correctly","location":null,"status":"passed","title":"Renders filterable <Dropdown /> and filters items correctly"}],"endTime":1669382705163,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1669382703770,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on hover, hides on leave","location":null,"status":"passed","title":"Shows popover on hover, hides on leave"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on click, hides only on click away","location":null,"status":"passed","title":"Shows popover on click, hides only on click away"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows custom content","location":null,"status":"passed","title":"Shows custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs callback function","location":null,"status":"passed","title":"Runs callback function"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the popover after a delay","location":null,"status":"passed","title":"Shows the popover after a delay"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not show the popover with delay if time not reached","location":null,"status":"passed","title":"Does not show the popover with delay if time not reached"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "}],"endTime":1669382705930,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1669382705174,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds notifications and dismisses them automatically","location":null,"status":"passed","title":"Adds notifications and dismisses them automatically"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds a notification and updates it","location":null,"status":"passed","title":"Adds a notification and updates it"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a click event","location":null,"status":"passed","title":"Notification has a click event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a close event","location":null,"status":"passed","title":"Notification has a close event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a finish event","location":null,"status":"passed","title":"Notification has a finish event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Maximum of 5 notifications is shown at once","location":null,"status":"passed","title":"Maximum of 5 notifications is shown at once"}],"endTime":1669382706747,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1669382705942,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> properly","location":null,"status":"passed","title":"Renders <Tag /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> group properly","location":null,"status":"passed","title":"Renders <Tag /> group properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> without remove button if disabled","location":null,"status":"passed","title":"Renders <Tag /> without remove button if disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Fires onClick and onRemoveClick <Tag /> events","location":null,"status":"passed","title":"Fires onClick and onRemoveClick <Tag /> events"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> with the label key","location":null,"status":"passed","title":"Renders <Tag /> with the label key"}],"endTime":1669382707429,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1669382706758,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> properly","location":null,"status":"passed","title":"Renders basic <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> with title properly","location":null,"status":"passed","title":"Renders basic <Panel /> with title properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> that is collapsed by default and can be expanded","location":null,"status":"passed","title":"Renders basic <Panel /> that is collapsed by default and can be expanded"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Panel /> properly","location":null,"status":"passed","title":"Renders closable <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Panel /> with actions","location":null,"status":"passed","title":"Renders <Panel /> with actions"}],"endTime":1669382708132,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1669382707439,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> properly","location":null,"status":"passed","title":"Renders <Button /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with size properly","location":null,"status":"passed","title":"Renders <Button /> with size properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with intent properly","location":null,"status":"passed","title":"Renders <Button /> with intent properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with right icon properly","location":null,"status":"passed","title":"Renders <Button /> with right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon and right icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon and right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with onClick function","location":null,"status":"passed","title":"Renders <Button /> with onClick function"}],"endTime":1669382708988,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1669382708142,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Modal /> properly","location":null,"status":"passed","title":"Renders basic <Modal /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not renders <Modal /> if its not open","location":null,"status":"passed","title":"Does not renders <Modal /> if its not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Modal /> with custom dimensions","location":null,"status":"passed","title":"Renders <Modal /> with custom dimensions"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders confirmation <Modal /> ","location":null,"status":"passed","title":"Renders confirmation <Modal /> "}],"endTime":1669382709745,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1669382708998,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not render <Drawer /> if not open","location":null,"status":"passed","title":"Does not render <Drawer /> if not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders opened <Drawer /> properly","location":null,"status":"passed","title":"Renders opened <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders hidable <Drawer /> properly","location":null,"status":"passed","title":"Renders hidable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Drawer /> properly","location":null,"status":"passed","title":"Renders closable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Drawer /> with interactive backdrop","location":null,"status":"passed","title":"Renders <Drawer /> with interactive backdrop"}],"endTime":1669382710422,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1669382709755,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Tree /> properly","location":null,"status":"passed","title":"Renders basic <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows textarea for <Tree /> properly","location":null,"status":"passed","title":"Shows textarea for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Tree /> items can be expanded and collapsed","location":null,"status":"passed","title":"<Tree /> items can be expanded and collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows types for <Tree /> properly","location":null,"status":"passed","title":"Shows types for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tree /> with clickable items","location":null,"status":"passed","title":"Renders <Tree /> with clickable items"}],"endTime":1669382711691,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1669382710432,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Collection /> properly","location":null,"status":"passed","title":"Renders basic <Collection /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> items can be filtered","location":null,"status":"passed","title":"<Collection /> items can be filtered"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> shows no data message when empty","location":null,"status":"passed","title":"<Collection /> shows no data message when empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> can be sorted","location":null,"status":"passed","title":"<Collection /> can be sorted"}],"endTime":1669382712904,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1669382711708,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Menu /> properly","location":null,"status":"passed","title":"Renders <Menu /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item can be clicked","location":null,"status":"passed","title":"<Menu /> item can be clicked"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item has right clickable button","location":null,"status":"passed","title":"<Menu /> item has right clickable button"}],"endTime":1669382713539,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1669382712913,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> properly","location":null,"status":"passed","title":"Renders <Input /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> with clear button properly","location":null,"status":"passed","title":"Renders <Input /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <Input /> cannot be cleared","location":null,"status":"passed","title":"Disabled <Input /> cannot be cleared"}],"endTime":1669382714121,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1669382713550,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders full <Breadcrumbs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders shortened <Breadcrumbs /> properly"}],"endTime":1669382714585,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1669382714138,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> properly","location":null,"status":"passed","title":"Renders <TextArea /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> with clear button properly","location":null,"status":"passed","title":"Renders <TextArea /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <TextArea /> cannot be cleared","location":null,"status":"passed","title":"Disabled <TextArea /> cannot be cleared"}],"endTime":1669382715091,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1669382714595,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Message /> properly","location":null,"status":"passed","title":"Renders <Message /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onFinish on message after duration","location":null,"status":"passed","title":"Runs onFinish on message after duration"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onClose when closed","location":null,"status":"passed","title":"Runs onClose when closed"}],"endTime":1669382715585,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1669382715099,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1669382716519,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1669382715608,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Layout properly","location":null,"status":"passed","title":"Renders Layout properly"}],"endTime":1669382716974,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1669382716527,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Icon /> properly","location":null,"status":"passed","title":"Renders <Icon /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","location":null,"status":"passed","title":"Renders empty <Icon /> if icon does not exist"}],"endTime":1669382717688,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1669382716991,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Navbar properly","location":null,"status":"passed","title":"Renders Navbar properly"}],"endTime":1669382718085,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1669382717697,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1669382718515,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1669382718094,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","location":null,"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1669382718897,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1669382718533,"status":"passed","summary":""}],"wasInterrupted":false}
1
+ {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":24,"numPassedTests":102,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":24,"numTotalTests":102,"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":1670431657239,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Table /> properly","location":null,"status":"passed","title":"Renders basic <Table /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with grouped columns properly","location":null,"status":"passed","title":"Renders <Table /> with grouped columns properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with custom content","location":null,"status":"passed","title":"Renders <Table /> with custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Table /> with predefined content","location":null,"status":"passed","title":"Renders <Table /> with predefined content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sorting on <Table /> works properly","location":null,"status":"passed","title":"Sorting on <Table /> works properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> can be selected","location":null,"status":"passed","title":"Rows on <Table /> can be selected"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> cannot be selected if _selectId is missing","location":null,"status":"passed","title":"Rows on <Table /> cannot be selected if _selectId is missing"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Rows on <Table /> are all selected/deselected when clicking on header","location":null,"status":"passed","title":"Rows on <Table /> are all selected/deselected when clicking on header"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Cells on <Table /> are interactive","location":null,"status":"passed","title":"Cells on <Table /> are interactive"}],"endTime":1670431669870,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/table.test.tsx","startTime":1670431657664,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Tabs /> properly","location":null,"status":"passed","title":"Renders full <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Tabs /> properly","location":null,"status":"passed","title":"Renders shortened <Tabs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Default active tab can be specified","location":null,"status":"passed","title":"Default active tab can be specified"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab and runs callback","location":null,"status":"passed","title":"Changes tab and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not change tab and run callback when disabled","location":null,"status":"passed","title":"Does not change tab and run callback when disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Changes tab programatically and runs callback","location":null,"status":"passed","title":"Changes tab programatically and runs callback"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Closable tab can be closed if not disabled","location":null,"status":"passed","title":"Closable tab can be closed if not disabled"}],"endTime":1670431671224,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tabs.test.tsx","startTime":1670431669891,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> properly","location":null,"status":"passed","title":"Renders <Dropdown /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders disabled <Dropdown /> when children are empty","location":null,"status":"passed","title":"Renders disabled <Dropdown /> when children are empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> with custom component and custom handler","location":null,"status":"passed","title":"Renders <Dropdown /> with custom component and custom handler"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> is opened by default","location":null,"status":"passed","title":"Renders <Dropdown /> is opened by default"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and calls a function on item click","location":null,"status":"passed","title":"Renders <Dropdown /> and calls a function on item click"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders filterable <Dropdown /> and filters items correctly","location":null,"status":"passed","title":"Renders filterable <Dropdown /> and filters items correctly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Dropdown /> and updates its items when state changes","location":null,"status":"passed","title":"Renders <Dropdown /> and updates its items when state changes"}],"endTime":1670431672998,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/dropdown.test.tsx","startTime":1670431671240,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders sidebar","location":null,"status":"passed","title":"Renders sidebar"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Sidebar can be collapsed","location":null,"status":"passed","title":"Sidebar can be collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Can open submenu manually","location":null,"status":"passed","title":"Can open submenu manually"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Submenu opens automatically if path matches","location":null,"status":"passed","title":"Submenu opens automatically if path matches"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks can be added and removed","location":null,"status":"passed","title":"Bookmarks can be added and removed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Bookmarks clicks are not propagated through","location":null,"status":"passed","title":"Bookmarks clicks are not propagated through"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders item as <p> element with onClick","location":null,"status":"passed","title":"Renders item as <p> element with onClick"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders floating sidebar with item as <p> element with onClick, closes on item click","location":null,"status":"passed","title":"Renders floating sidebar with item as <p> element with onClick, closes on item click"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders custom item at the top","location":null,"status":"passed","title":"Renders custom item at the top"}],"endTime":1670431674069,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/sidebar.test.tsx","startTime":1670431673009,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on hover, hides on leave","location":null,"status":"passed","title":"Shows popover on hover, hides on leave"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows popover on click, hides only on click away","location":null,"status":"passed","title":"Shows popover on click, hides only on click away"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows custom content","location":null,"status":"passed","title":"Shows custom content"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs callback function","location":null,"status":"passed","title":"Runs callback function"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the popover after a delay","location":null,"status":"passed","title":"Shows the popover after a delay"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not show the popover with delay if time not reached","location":null,"status":"passed","title":"Does not show the popover with delay if time not reached"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows the hoverStay popover after a delay and stays, ","location":null,"status":"passed","title":"Shows the hoverStay popover after a delay and stays, "}],"endTime":1670431675145,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/popover.test.tsx","startTime":1670431674080,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds notifications and dismisses them automatically","location":null,"status":"passed","title":"Adds notifications and dismisses them automatically"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Adds a notification and updates it","location":null,"status":"passed","title":"Adds a notification and updates it"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a click event","location":null,"status":"passed","title":"Notification has a click event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a close event","location":null,"status":"passed","title":"Notification has a close event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Notification has a finish event","location":null,"status":"passed","title":"Notification has a finish event"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Maximum of 5 notifications is shown at once","location":null,"status":"passed","title":"Maximum of 5 notifications is shown at once"}],"endTime":1670431675979,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/notifications.test.tsx","startTime":1670431675155,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> properly","location":null,"status":"passed","title":"Renders <Tag /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> group properly","location":null,"status":"passed","title":"Renders <Tag /> group properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> without remove button if disabled","location":null,"status":"passed","title":"Renders <Tag /> without remove button if disabled"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Fires onClick and onRemoveClick <Tag /> events","location":null,"status":"passed","title":"Fires onClick and onRemoveClick <Tag /> events"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tag /> with the label key","location":null,"status":"passed","title":"Renders <Tag /> with the label key"}],"endTime":1670431676629,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tag.test.tsx","startTime":1670431675989,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> properly","location":null,"status":"passed","title":"Renders basic <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> with title properly","location":null,"status":"passed","title":"Renders basic <Panel /> with title properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Panel /> that is collapsed by default and can be expanded","location":null,"status":"passed","title":"Renders basic <Panel /> that is collapsed by default and can be expanded"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Panel /> properly","location":null,"status":"passed","title":"Renders closable <Panel /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Panel /> with actions","location":null,"status":"passed","title":"Renders <Panel /> with actions"}],"endTime":1670431677336,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/panel.test.tsx","startTime":1670431676639,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> properly","location":null,"status":"passed","title":"Renders <Button /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with size properly","location":null,"status":"passed","title":"Renders <Button /> with size properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with intent properly","location":null,"status":"passed","title":"Renders <Button /> with intent properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with right icon properly","location":null,"status":"passed","title":"Renders <Button /> with right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with icon and right icon properly","location":null,"status":"passed","title":"Renders <Button /> with icon and right icon properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Button /> with onClick function","location":null,"status":"passed","title":"Renders <Button /> with onClick function"}],"endTime":1670431678111,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/button.test.tsx","startTime":1670431677345,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Modal /> properly","location":null,"status":"passed","title":"Renders basic <Modal /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not renders <Modal /> if its not open","location":null,"status":"passed","title":"Does not renders <Modal /> if its not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Modal /> with custom dimensions","location":null,"status":"passed","title":"Renders <Modal /> with custom dimensions"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders confirmation <Modal /> ","location":null,"status":"passed","title":"Renders confirmation <Modal /> "}],"endTime":1670431678821,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/modal.test.tsx","startTime":1670431678119,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Does not render <Drawer /> if not open","location":null,"status":"passed","title":"Does not render <Drawer /> if not open"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders opened <Drawer /> properly","location":null,"status":"passed","title":"Renders opened <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders hidable <Drawer /> properly","location":null,"status":"passed","title":"Renders hidable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders closable <Drawer /> properly","location":null,"status":"passed","title":"Renders closable <Drawer /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Drawer /> with interactive backdrop","location":null,"status":"passed","title":"Renders <Drawer /> with interactive backdrop"}],"endTime":1670431679460,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/drawer.test.tsx","startTime":1670431678830,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Tree /> properly","location":null,"status":"passed","title":"Renders basic <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows textarea for <Tree /> properly","location":null,"status":"passed","title":"Shows textarea for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Tree /> items can be expanded and collapsed","location":null,"status":"passed","title":"<Tree /> items can be expanded and collapsed"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Shows types for <Tree /> properly","location":null,"status":"passed","title":"Shows types for <Tree /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Tree /> with clickable items","location":null,"status":"passed","title":"Renders <Tree /> with clickable items"}],"endTime":1670431680648,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/tree.test.tsx","startTime":1670431679468,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders basic <Collection /> properly","location":null,"status":"passed","title":"Renders basic <Collection /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> items can be filtered","location":null,"status":"passed","title":"<Collection /> items can be filtered"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> shows no data message when empty","location":null,"status":"passed","title":"<Collection /> shows no data message when empty"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Collection /> can be sorted","location":null,"status":"passed","title":"<Collection /> can be sorted"}],"endTime":1670431681836,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/collection.test.tsx","startTime":1670431680662,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Menu /> properly","location":null,"status":"passed","title":"Renders <Menu /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item can be clicked","location":null,"status":"passed","title":"<Menu /> item can be clicked"},{"ancestorTitles":[],"failureMessages":[],"fullName":"<Menu /> item has right clickable button","location":null,"status":"passed","title":"<Menu /> item has right clickable button"}],"endTime":1670431682384,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/menu.test.tsx","startTime":1670431681845,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> properly","location":null,"status":"passed","title":"Renders <Input /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Input /> with clear button properly","location":null,"status":"passed","title":"Renders <Input /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <Input /> cannot be cleared","location":null,"status":"passed","title":"Disabled <Input /> cannot be cleared"}],"endTime":1670431682965,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/input.test.tsx","startTime":1670431682393,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders full <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders full <Breadcrumbs /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders shortened <Breadcrumbs /> properly","location":null,"status":"passed","title":"Renders shortened <Breadcrumbs /> properly"}],"endTime":1670431683414,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/breadcrumbs.test.tsx","startTime":1670431682973,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> properly","location":null,"status":"passed","title":"Renders <TextArea /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TextArea /> with clear button properly","location":null,"status":"passed","title":"Renders <TextArea /> with clear button properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Disabled <TextArea /> cannot be cleared","location":null,"status":"passed","title":"Disabled <TextArea /> cannot be cleared"}],"endTime":1670431683915,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/textarea.test.tsx","startTime":1670431683423,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Message /> properly","location":null,"status":"passed","title":"Renders <Message /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onFinish on message after duration","location":null,"status":"passed","title":"Runs onFinish on message after duration"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Runs onClose when closed","location":null,"status":"passed","title":"Runs onClose when closed"}],"endTime":1670431684780,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/messages.test.tsx","startTime":1670431683930,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1670431685225,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/radiogroup.test.tsx","startTime":1670431684788,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Layout properly","location":null,"status":"passed","title":"Renders Layout properly"}],"endTime":1670431685710,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/layout.test.tsx","startTime":1670431685243,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Icon /> properly","location":null,"status":"passed","title":"Renders <Icon /> properly"},{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders empty <Icon /> if icon does not exist","location":null,"status":"passed","title":"Renders empty <Icon /> if icon does not exist"}],"endTime":1670431686390,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/icon.test.tsx","startTime":1670431685718,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders Navbar properly","location":null,"status":"passed","title":"Renders Navbar properly"}],"endTime":1670431686778,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/navbar.test.tsx","startTime":1670431686406,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <Checkbox /> properly","location":null,"status":"passed","title":"Renders <Checkbox /> properly"}],"endTime":1670431687204,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/checkbox.test.tsx","startTime":1670431686792,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":[],"failureMessages":[],"fullName":"Renders <TimeAgo /> data properly","location":null,"status":"passed","title":"Renders <TimeAgo /> data properly"}],"endTime":1670431687571,"message":"","name":"/home/runner/work/reqore/reqore/__tests__/timeAgo.test.tsx","startTime":1670431687213,"status":"passed","summary":""}],"wasInterrupted":false}