@coveord/plasma-mantine 58.0.1 → 59.0.0

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 (67) hide show
  1. package/.turbo/turbo-build.log +4 -4
  2. package/.turbo/turbo-test.log +100 -103
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/cjs/components/Badge/Badge.d.ts +2 -2
  5. package/dist/cjs/components/Badge/Badge.d.ts.map +1 -1
  6. package/dist/cjs/components/Badge/Badge.js.map +1 -1
  7. package/dist/cjs/components/Header/HeaderRight/HeaderRight.js +1 -1
  8. package/dist/cjs/components/Header/HeaderRight/HeaderRight.js.map +1 -1
  9. package/dist/cjs/components/LastUpdated/LastUpdated.d.ts.map +1 -1
  10. package/dist/cjs/components/LastUpdated/LastUpdated.js +0 -1
  11. package/dist/cjs/components/LastUpdated/LastUpdated.js.map +1 -1
  12. package/dist/cjs/components/Modal/ModalFooter.module.css +1 -0
  13. package/dist/cjs/components/Prompt/Prompt.d.ts +3 -3
  14. package/dist/cjs/components/Prompt/Prompt.d.ts.map +1 -1
  15. package/dist/cjs/components/Prompt/Prompt.js +6 -6
  16. package/dist/cjs/components/Prompt/Prompt.js.map +1 -1
  17. package/dist/cjs/components/Table/use-persisted-column-visibility.d.ts +16 -0
  18. package/dist/cjs/components/Table/use-persisted-column-visibility.d.ts.map +1 -0
  19. package/dist/cjs/components/Table/use-persisted-column-visibility.js +123 -0
  20. package/dist/cjs/components/Table/use-persisted-column-visibility.js.map +1 -0
  21. package/dist/cjs/components/Table/use-table.d.ts +12 -0
  22. package/dist/cjs/components/Table/use-table.d.ts.map +1 -1
  23. package/dist/cjs/components/Table/use-table.js +22 -7
  24. package/dist/cjs/components/Table/use-table.js.map +1 -1
  25. package/dist/cjs/styles/Modal.module.css +13 -0
  26. package/dist/cjs/utils/local-storage.d.ts +38 -0
  27. package/dist/cjs/utils/local-storage.d.ts.map +1 -0
  28. package/dist/cjs/utils/local-storage.js +175 -0
  29. package/dist/cjs/utils/local-storage.js.map +1 -0
  30. package/dist/esm/components/Badge/Badge.d.ts +2 -2
  31. package/dist/esm/components/Badge/Badge.d.ts.map +1 -1
  32. package/dist/esm/components/Badge/Badge.js.map +1 -1
  33. package/dist/esm/components/Header/HeaderRight/HeaderRight.js +1 -1
  34. package/dist/esm/components/Header/HeaderRight/HeaderRight.js.map +1 -1
  35. package/dist/esm/components/LastUpdated/LastUpdated.d.ts.map +1 -1
  36. package/dist/esm/components/LastUpdated/LastUpdated.js +0 -1
  37. package/dist/esm/components/LastUpdated/LastUpdated.js.map +1 -1
  38. package/dist/esm/components/Modal/ModalFooter.module.css +1 -0
  39. package/dist/esm/components/Prompt/Prompt.d.ts +3 -3
  40. package/dist/esm/components/Prompt/Prompt.d.ts.map +1 -1
  41. package/dist/esm/components/Prompt/Prompt.js +7 -8
  42. package/dist/esm/components/Prompt/Prompt.js.map +1 -1
  43. package/dist/esm/components/Table/use-persisted-column-visibility.d.ts +16 -0
  44. package/dist/esm/components/Table/use-persisted-column-visibility.d.ts.map +1 -0
  45. package/dist/esm/components/Table/use-persisted-column-visibility.js +85 -0
  46. package/dist/esm/components/Table/use-persisted-column-visibility.js.map +1 -0
  47. package/dist/esm/components/Table/use-table.d.ts +12 -0
  48. package/dist/esm/components/Table/use-table.d.ts.map +1 -1
  49. package/dist/esm/components/Table/use-table.js +15 -3
  50. package/dist/esm/components/Table/use-table.js.map +1 -1
  51. package/dist/esm/styles/Modal.module.css +13 -0
  52. package/dist/esm/utils/local-storage.d.ts +38 -0
  53. package/dist/esm/utils/local-storage.d.ts.map +1 -0
  54. package/dist/esm/utils/local-storage.js +134 -0
  55. package/dist/esm/utils/local-storage.js.map +1 -0
  56. package/package.json +5 -5
  57. package/src/components/Badge/Badge.tsx +30 -27
  58. package/src/components/Header/HeaderRight/HeaderRight.tsx +1 -1
  59. package/src/components/LastUpdated/LastUpdated.tsx +34 -36
  60. package/src/components/Modal/ModalFooter.module.css +1 -0
  61. package/src/components/Prompt/Prompt.tsx +14 -6
  62. package/src/components/Table/__tests__/use-persisted-column-visibility.spec.ts +203 -0
  63. package/src/components/Table/use-persisted-column-visibility.ts +79 -0
  64. package/src/components/Table/use-table.ts +36 -3
  65. package/src/styles/Modal.module.css +13 -0
  66. package/src/utils/__tests__/local-storage.spec.ts +176 -0
  67. package/src/utils/local-storage.ts +151 -0
@@ -1,9 +1,9 @@
1
1
 
2
- > @coveord/plasma-mantine@58.0.0 build /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@58.0.2 build /home/runner/work/plasma/plasma/packages/mantine
3
3
  > node ../../scripts/build
4
4
 
5
- (node:3823) [DEP0190] DeprecationWarning: Passing args to a child process with shell option true can lead to security vulnerabilities, as the arguments are not escaped, only concatenated.
5
+ (node:4310) [DEP0190] DeprecationWarning: Passing args to a child process with shell option true can lead to security vulnerabilities, as the arguments are not escaped, only concatenated.
6
6
  (Use `node --trace-deprecation ...` to show where the warning was created)
7
- Successfully compiled: 229 files, copied 71 files with swc (662.16ms)
8
- Successfully compiled: 229 files, copied 71 files with swc (681.8ms)
7
+ Successfully compiled: 231 files, copied 71 files with swc (570.99ms)
8
+ Successfully compiled: 231 files, copied 71 files with swc (585.2ms)
9
9
 
@@ -1,112 +1,109 @@
1
1
 
2
- > @coveord/plasma-mantine@58.0.0 test /home/runner/work/plasma/plasma/packages/mantine
2
+ > @coveord/plasma-mantine@58.0.2 test /home/runner/work/plasma/plasma/packages/mantine
3
3
  > cross-env TZ=UTC vitest run --silent
4
4
 
5
5
 
6
6
   RUN  v4.1.2 /home/runner/work/plasma/plasma/packages/mantine
7
7
 
8
- ✓ src/components/Collection/__tests__/CollectionWithColumns.spec.tsx (17 tests) 963ms
9
- ✓ src/components/Collection/__tests__/Collection.spec.tsx (18 tests) 1536ms
10
- ✓ src/components/Table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 2365ms
11
- ✓ renders the data using the RowLayout by default  376ms
12
- ✓ src/components/Table/__tests__/Table.spec.tsx (12 tests) 1691ms
13
- ✓ unselects all the selected rows when clicking on the the unselect button from the table header  302ms
14
- ✓ src/components/Table/__tests__/TablePagination.spec.tsx (7 tests) 914ms
15
- ✓ calculates the number of pages based on the pageSize and the total number of entries  324ms
16
- ✓ src/components/Table/__tests__/TableColumnsSelector.spec.tsx (12 tests) 4605ms
17
- ✓ renders the column selector button in the actions column header when rowConfigurable is true  437ms
18
- ✓ renders all columns in the dropdown except control columns  545ms
19
- ✓ renders all checkboxes checked by default  384ms
20
- ✓ hides a column when the user unchecks it  465ms
21
- ✓ shows a column when the user checks it  407ms
22
- ✓ renders a tooltip when hovering a disabled always visible column checkbox  359ms
23
- ✓ disables unchecked columns when the maximum number of visible columns is reached  368ms
24
- ✓ does not render a footer when maxSelectableColumns is not set  369ms
25
- ✓ enables a disabled column when a visible column is hidden  384ms
26
- ✓ src/components/Table/__tests__/TableActions.spec.tsx (6 tests) 1542ms
27
- ✓ displays the actions when the row is selected  450ms
28
- ✓ displays the secondary actions when the row is selected and the user clicks on more  490ms
29
- ✓ passes down an array of selected rows  310ms
30
- ✓ src/hooks/__tests__/use-url-synced-state.unit.spec.ts (70 tests) 182ms
31
- ✓ src/components/Facet/__tests__/Facet.component.spec.tsx (15 tests) 2277ms
32
- ✓ renders the title  300ms
33
- ✓ src/components/InlineConfirm/__tests__/InlineConfirm.spec.tsx (8 tests) 827ms
34
- ✓ src/utils/__tests__/groupOptions.unit.spec.ts (12 tests) 12ms
35
- ✓ src/components/Table/__tests__/TablePerPage.spec.tsx (7 tests) 947ms
36
- ✓ displays the label  312ms
37
- ✓ src/components/CodeEditor/__tests__/CodeEditor.spec.tsx (10 tests | 1 skipped) 856ms
38
- ✓ renders the monaco editor, a copy to clipboard button and a search button  326ms
39
- ✓ src/components/Table/__tests__/TableFilter.spec.tsx (6 tests) 1231ms
40
- ✓ displays the placeholder  306ms
41
- ✓ does not unselect rows that get filtered out  365ms
42
- ✓ src/components/DateRangePicker/__tests__/DateRangePicker.spec.tsx (18 tests) 14717ms
43
- ✓ opens popover when input is clicked  359ms
44
- ✓ calls onChange when a date range is applied  2914ms
45
- ✓ closes popover when Cancel is clicked  487ms
46
- ✓ calls onCancel when Cancel button is clicked  392ms
47
- ✓ applies the selected date range in uncontrolled mode  3273ms
48
- ✓ applies the selected date range in controlled mode  3392ms
49
- ✓ renders preset options in the popover  366ms
50
- ✓ sets the selected date range in the url  2417ms
51
- ✓ calls onOpenedChange when popover state changes  460ms
52
- ✓ src/components/Table/__tests__/TablePredicate.spec.tsx (3 tests) 1225ms
53
- ✓ goes back to the first page when changing the predicate  762ms
54
- ✓ sets the current predicate value in the url using the predicate id as key  343ms
55
- ✓ src/hooks/__tests__/useParentHeight.spec.tsx (4 tests) 65ms
56
- ✓ src/components/Header/__tests__/Header.spec.tsx (8 tests) 446ms
57
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 4645ms
58
- ✓ calls onApply when the user clicks on the apply button  773ms
59
- ✓ calls onCancel when the user clicks on the cancel button  420ms
60
- ✓ calls onApply with the selected dates when clicking in the calendar  932ms
61
- ✓ set end date same as start date if only one date is selected when clicking in the calendar  760ms
62
- ✓ calls onApply with the selected dates when typing in the inputs  1638ms
63
- ✓ src/components/Table/__tests__/Th.spec.tsx (4 tests) 623ms
64
- ✓ displays the sort icon for every sortable column  303ms
65
- ✓ src/components/Button/__tests__/Button.spec.tsx (6 tests) 465ms
66
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 2844ms
67
- ✓ calls onApply with the selected dates when clicking in the calendar  2689ms
68
- ✓ src/components/Table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 3952ms
69
- ✓ sets the selected date range in the url  3612ms
70
- ✓ src/components/DateTimeRangePicker/__tests__/DateTimeRangePicker.spec.tsx (3 tests) 2732ms
71
- ✓ updates with the selected dates when choosing a preset  555ms
72
- ✓ can change the date and time  2032ms
73
- ✓ src/components/Table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 692ms
74
- ✓ expands the rows when the user clicks on a cell  572ms
75
- ✓ src/components/Table/__tests__/TableLastUpdated.spec.tsx (3 tests) 439ms
76
- ✓ src/components/DateRangePicker/__tests__/EditableDateRangePicker.spec.tsx (3 tests) 3242ms
77
- ✓ renders an input for the start and an input for the end  320ms
78
- ✓ updates when editing values  1230ms
79
- ✓ accepts minDate and maxDate props for start and end inputs  1687ms
8
+ ✓ src/components/Collection/__tests__/CollectionWithColumns.spec.tsx (17 tests) 944ms
9
+ ✓ src/components/Collection/__tests__/Collection.spec.tsx (18 tests) 1624ms
10
+ ✓ src/components/Table/layouts/__tests__/RowLayout.spec.tsx (17 tests) 2287ms
11
+ ✓ renders the data using the RowLayout by default  375ms
12
+ ✓ src/components/Table/__tests__/Table.spec.tsx (12 tests) 1591ms
13
+ ✓ unselects all the selected rows when clicking on the the unselect button from the table header  346ms
14
+ ✓ src/components/Table/__tests__/TablePagination.spec.tsx (7 tests) 899ms
15
+ ✓ calculates the number of pages based on the pageSize and the total number of entries  312ms
16
+ ✓ src/components/Table/__tests__/TableColumnsSelector.spec.tsx (12 tests) 3675ms
17
+ ✓ renders the column selector button in the actions column header when rowConfigurable is true  413ms
18
+ ✓ renders all columns in the dropdown except control columns  438ms
19
+ ✓ renders all checkboxes checked by default  328ms
20
+ ✓ hides a column when the user unchecks it  435ms
21
+ ✓ shows a column when the user checks it  372ms
22
+ ✓ enables a disabled column when a visible column is hidden  329ms
23
+ ✓ src/components/Table/__tests__/TableActions.spec.tsx (6 tests) 1636ms
24
+ ✓ displays the actions when the row is selected  460ms
25
+ ✓ displays the secondary actions when the row is selected and the user clicks on more  539ms
26
+ ✓ passes down an array of selected rows  340ms
27
+ ✓ src/hooks/__tests__/use-url-synced-state.unit.spec.ts (70 tests) 217ms
28
+ ✓ src/components/Facet/__tests__/Facet.component.spec.tsx (15 tests) 2520ms
29
+ ✓ renders the title  314ms
30
+ ✓ handles keyboard navigation when there is no search  325ms
31
+ ✓ src/components/Table/__tests__/use-persisted-column-visibility.spec.ts (15 tests) 52ms
32
+ ✓ src/components/InlineConfirm/__tests__/InlineConfirm.spec.tsx (8 tests) 778ms
33
+ ✓ src/utils/__tests__/local-storage.spec.ts (25 tests) 24ms
34
+ ✓ src/components/Table/__tests__/TablePerPage.spec.tsx (7 tests) 950ms
35
+ ✓ displays the label  317ms
36
+ ✓ src/utils/__tests__/groupOptions.unit.spec.ts (12 tests) 11ms
37
+ ✓ src/components/Table/__tests__/TableFilter.spec.tsx (6 tests) 1034ms
38
+ ✓ src/components/CodeEditor/__tests__/CodeEditor.spec.tsx (10 tests | 1 skipped) 904ms
39
+ ✓ renders the monaco editor, a copy to clipboard button and a search button  375ms
40
+ ✓ src/components/DateRangePicker/__tests__/DateRangePicker.spec.tsx (18 tests) 14567ms
41
+ ✓ calls onChange when a date range is applied  3106ms
42
+ ✓ closes popover when Cancel is clicked  444ms
43
+ ✓ calls onCancel when Cancel button is clicked  400ms
44
+ ✓ applies the selected date range in uncontrolled mode  3459ms
45
+ ✓ applies the selected date range in controlled mode  2992ms
46
+ ✓ renders preset options in the popover  402ms
47
+ ✓ sets the selected date range in the url  2612ms
48
+ ✓ src/hooks/__tests__/useParentHeight.spec.tsx (4 tests) 74ms
49
+ ✓ src/components/Table/__tests__/TablePredicate.spec.tsx (3 tests) 1354ms
50
+ ✓ goes back to the first page when changing the predicate  825ms
51
+ ✓ sets the current predicate value in the url using the predicate id as key  372ms
52
+ ✓ src/components/Header/__tests__/Header.spec.tsx (8 tests) 455ms
53
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerInlineCalendar.spec.tsx (7 tests | 1 skipped) 4209ms
54
+ ✓ calls onApply when the user clicks on the apply button  701ms
55
+ ✓ calls onCancel when the user clicks on the cancel button  453ms
56
+ ✓ calls onApply with the selected dates when clicking in the calendar  1055ms
57
+ ✓ set end date same as start date if only one date is selected when clicking in the calendar  495ms
58
+ ✓ calls onApply with the selected dates when typing in the inputs  1390ms
59
+ ✓ src/components/Table/__tests__/Th.spec.tsx (4 tests) 614ms
60
+ ✓ displays the sort icon for every sortable column  302ms
61
+ ✓ src/components/Button/__tests__/Button.spec.tsx (6 tests) 612ms
62
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerPopoverCalendar.spec.tsx (4 tests | 2 skipped) 2677ms
63
+ ✓ calls onApply with the selected dates when clicking in the calendar  2561ms
64
+ ✓ src/components/DateTimeRangePicker/__tests__/DateTimeRangePicker.spec.tsx (3 tests) 2450ms
65
+ ✓ updates with the selected dates when choosing a preset  475ms
66
+ ✓ can change the date and time  1857ms
67
+ ✓ src/components/Table/__tests__/TableDateRangePicker.spec.tsx (3 tests) 4355ms
68
+ ✓ displays the initial dates  333ms
69
+ ✓ sets the selected date range in the url  3958ms
70
+ ✓ src/components/Table/__tests__/TableLastUpdated.spec.tsx (3 tests) 457ms
71
+ ✓ src/components/DateRangePicker/__tests__/EditableDateRangePicker.spec.tsx (3 tests) 3213ms
72
+ ✓ renders an input for the start and an input for the end  317ms
73
+ ✓ updates when editing values  1404ms
74
+ ✓ accepts minDate and maxDate props for start and end inputs  1489ms
75
+ ✓ src/components/Table/__tests__/TableCollapsibleColumn.spec.tsx (2 tests) 574ms
76
+ ✓ expands the rows when the user clicks on a cell  438ms
77
+ ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 6ms
80
78
  ↓ src/utils/__tests__/overrideComponent.spec.tsx (1 test | 1 skipped)
81
- ✓ src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts (3 tests) 9ms
82
- ✓ src/components/RadioCard/__tests__/RadioCard.component.spec.tsx (6 tests) 471ms
83
- ✓ src/components/Button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 440ms
84
- ✓ shows a tooltip when hovering over the disabled button  395ms
85
- ✓ src/components/DateRangePicker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 659ms
86
- ✓ calls onChange when selecting a preset  531ms
87
- ✓ src/components/LastUpdated/__tests__/LastUpdated.spec.tsx (5 tests) 303ms
88
- ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 36ms
89
- ✓ src/components/ChildForm/__tests__/ChildForm.spec.tsx (5 tests) 417ms
90
- ✓ src/components/Prompt/__tests__/Prompt.spec.tsx (6 tests) 571ms
91
- ✓ displays the title, body and close button  305ms
92
- ✓ src/components/CopyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 486ms
93
- ✓ src/components/BrowserPreview/__tests__/BrowserPreview.spec.tsx (4 tests) 384ms
94
- ✓ src/components/StatusToken/__tests__/StatusToken.component.spec.tsx (10 tests) 355ms
95
- ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (1 test) 16ms
96
- ✓ src/components/Input/__tests__/Input.spec.tsx (2 tests) 372ms
97
- ✓ renders LabelInfo inside the label prop and shows its tooltip content on hover  367ms
98
- ✓ src/components/Modal/__tests__/Modal.spec.tsx (2 tests) 278ms
99
- ✓ src/components/Modal/__tests__/ModalFooter.spec.tsx (2 tests) 107ms
100
- ✓ src/components/Switch/__tests__/Switch.spec.tsx (1 test) 365ms
101
- ✓ shows Input.LabelInfo tooltip content when hovering the info token in the label  361ms
102
- ✓ src/components/Menu/__tests__/Menu.spec.tsx (1 test) 243ms
103
- ✓ src/components/DateTimeRangePicker/__tests__/EditableDateTimeRangePicker.spec.tsx (1 test) 264ms
104
- ✓ src/components/CodeEditor/search/__tests__/Search.unit.spec.tsx (1 test) 248ms
105
- ✓ src/components/StickyFooter/__tests__/StickyFooter.spec.tsx (1 test) 70ms
106
- ✓ src/components/BlankSlate/__tests__/BlankSlate.spec.tsx (1 test) 57ms
79
+ ✓ src/components/RadioCard/__tests__/RadioCard.component.spec.tsx (6 tests) 486ms
80
+ ✓ src/components/Button/__tests__/ButtonWithDisabledTooltip.spec.tsx (3 tests | 1 skipped) 306ms
81
+ ✓ src/components/DateRangePicker/__tests__/DateRangePickerPresetSelect.spec.tsx (2 tests) 676ms
82
+ ✓ calls onChange when selecting a preset  545ms
83
+ ✓ src/components/LastUpdated/__tests__/LastUpdated.spec.tsx (5 tests) 374ms
84
+ ✓ src/components/ChildForm/__tests__/ChildForm.spec.tsx (5 tests) 338ms
85
+ ✓ src/hooks/__tests__/useControlledList.spec.tsx (3 tests) 34ms
86
+ ✓ src/components/Prompt/__tests__/Prompt.spec.tsx (6 tests) 564ms
87
+ ✓ src/components/CopyToClipboard/__tests__/CopyToClipboard.spec.tsx (3 tests) 451ms
88
+ ✓ src/components/BrowserPreview/__tests__/BrowserPreview.spec.tsx (4 tests) 439ms
89
+ ✓ renders the specified text as the header tooltip content  315ms
90
+ ✓ src/components/StatusToken/__tests__/StatusToken.component.spec.tsx (10 tests) 345ms
91
+ ✓ src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts (1 test) 13ms
92
+ ✓ src/components/Input/__tests__/Input.spec.tsx (2 tests) 370ms
93
+ ✓ renders LabelInfo inside the label prop and shows its tooltip content on hover  363ms
94
+ ✓ src/components/Modal/__tests__/Modal.spec.tsx (2 tests) 273ms
95
+ ✓ src/components/Modal/__tests__/ModalFooter.spec.tsx (2 tests) 87ms
96
+ ✓ src/components/Switch/__tests__/Switch.spec.tsx (1 test) 403ms
97
+ ✓ shows Input.LabelInfo tooltip content when hovering the info token in the label  398ms
98
+ ✓ src/components/Menu/__tests__/Menu.spec.tsx (1 test) 237ms
99
+ ✓ src/components/DateTimeRangePicker/__tests__/EditableDateTimeRangePicker.spec.tsx (1 test) 334ms
100
+ ✓ renders start and end date in correct format  329ms
101
+ ✓ src/components/StickyFooter/__tests__/StickyFooter.spec.tsx (1 test) 71ms
102
+ ✓ src/components/CodeEditor/search/__tests__/Search.unit.spec.tsx (1 test) 253ms
103
+ ✓ src/components/BlankSlate/__tests__/BlankSlate.spec.tsx (1 test) 58ms
107
104
 
108
-  Test Files  48 passed | 1 skipped (49)
109
-  Tests  343 passed | 6 skipped (349)
110
-  Start at  21:44:55
111
-  Duration  58.70s (transform 2.08s, setup 9.26s, import 47.67s, tests 62.19s, environment 45.55s)
105
+  Test Files  50 passed | 1 skipped (51)
106
+  Tests  383 passed | 6 skipped (389)
107
+  Start at  14:12:31
108
+  Duration  60.02s (transform 2.08s, setup 9.57s, import 49.41s, tests 60.88s, environment 47.85s)
112
109