@coveord/plasma-mantine 55.7.2-next.44 → 55.7.2-next.45
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.
- package/.turbo/turbo-build.log +3 -3
- package/.turbo/turbo-test.log +55 -53
- package/dist/.tsbuildinfo +1 -1
- package/dist/cjs/components/prompt/Prompt.d.ts +0 -1
- package/dist/cjs/components/prompt/Prompt.d.ts.map +1 -1
- package/dist/cjs/components/prompt/Prompt.js +17 -32
- package/dist/cjs/components/prompt/Prompt.js.map +1 -1
- package/dist/cjs/components/prompt/Prompt.module.css +2 -5
- package/dist/cjs/components/prompt/icons/CriticalIcon.d.ts +3 -0
- package/dist/cjs/components/prompt/icons/CriticalIcon.d.ts.map +1 -0
- package/dist/cjs/components/prompt/icons/CriticalIcon.js +29 -0
- package/dist/cjs/components/prompt/icons/CriticalIcon.js.map +1 -0
- package/dist/cjs/components/prompt/icons/InfoIcon.d.ts +3 -0
- package/dist/cjs/components/prompt/icons/InfoIcon.d.ts.map +1 -0
- package/dist/cjs/components/prompt/icons/InfoIcon.js +29 -0
- package/dist/cjs/components/prompt/icons/InfoIcon.js.map +1 -0
- package/dist/cjs/components/prompt/icons/SuccessIcon.d.ts +3 -0
- package/dist/cjs/components/prompt/icons/SuccessIcon.d.ts.map +1 -0
- package/dist/cjs/components/prompt/icons/SuccessIcon.js +29 -0
- package/dist/cjs/components/prompt/icons/SuccessIcon.js.map +1 -0
- package/dist/cjs/components/prompt/icons/WarningIcon.d.ts +3 -0
- package/dist/cjs/components/prompt/icons/WarningIcon.d.ts.map +1 -0
- package/dist/cjs/components/prompt/icons/WarningIcon.js +29 -0
- package/dist/cjs/components/prompt/icons/WarningIcon.js.map +1 -0
- package/dist/cjs/styles/Notifications.module.css +37 -0
- package/dist/cjs/theme/Theme.d.ts.map +1 -1
- package/dist/cjs/theme/Theme.js +4 -2
- package/dist/cjs/theme/Theme.js.map +1 -1
- package/dist/cjs/theme/plasmaCSSVariablesResolver.d.ts.map +1 -1
- package/dist/cjs/theme/plasmaCSSVariablesResolver.js +4 -1
- package/dist/cjs/theme/plasmaCSSVariablesResolver.js.map +1 -1
- package/dist/esm/components/prompt/Prompt.d.ts +0 -1
- package/dist/esm/components/prompt/Prompt.d.ts.map +1 -1
- package/dist/esm/components/prompt/Prompt.js +18 -29
- package/dist/esm/components/prompt/Prompt.js.map +1 -1
- package/dist/esm/components/prompt/Prompt.module.css +2 -5
- package/dist/esm/components/prompt/icons/CriticalIcon.d.ts +3 -0
- package/dist/esm/components/prompt/icons/CriticalIcon.d.ts.map +1 -0
- package/dist/esm/components/prompt/icons/CriticalIcon.js +17 -0
- package/dist/esm/components/prompt/icons/CriticalIcon.js.map +1 -0
- package/dist/esm/components/prompt/icons/InfoIcon.d.ts +3 -0
- package/dist/esm/components/prompt/icons/InfoIcon.d.ts.map +1 -0
- package/dist/esm/components/prompt/icons/InfoIcon.js +17 -0
- package/dist/esm/components/prompt/icons/InfoIcon.js.map +1 -0
- package/dist/esm/components/prompt/icons/SuccessIcon.d.ts +3 -0
- package/dist/esm/components/prompt/icons/SuccessIcon.d.ts.map +1 -0
- package/dist/esm/components/prompt/icons/SuccessIcon.js +17 -0
- package/dist/esm/components/prompt/icons/SuccessIcon.js.map +1 -0
- package/dist/esm/components/prompt/icons/WarningIcon.d.ts +3 -0
- package/dist/esm/components/prompt/icons/WarningIcon.d.ts.map +1 -0
- package/dist/esm/components/prompt/icons/WarningIcon.js +17 -0
- package/dist/esm/components/prompt/icons/WarningIcon.js.map +1 -0
- package/dist/esm/styles/Notifications.module.css +37 -0
- package/dist/esm/theme/Theme.d.ts.map +1 -1
- package/dist/esm/theme/Theme.js +5 -3
- package/dist/esm/theme/Theme.js.map +1 -1
- package/dist/esm/theme/plasmaCSSVariablesResolver.d.ts.map +1 -1
- package/dist/esm/theme/plasmaCSSVariablesResolver.js +4 -1
- package/dist/esm/theme/plasmaCSSVariablesResolver.js.map +1 -1
- package/package.json +3 -3
- package/src/components/prompt/Prompt.module.css +2 -5
- package/src/components/prompt/Prompt.tsx +18 -35
- package/src/components/prompt/__tests__/Prompt.spec.tsx +12 -18
- package/src/components/prompt/icons/CriticalIcon.tsx +18 -0
- package/src/components/prompt/icons/InfoIcon.tsx +18 -0
- package/src/components/prompt/icons/SuccessIcon.tsx +17 -0
- package/src/components/prompt/icons/WarningIcon.tsx +18 -0
- package/src/styles/Notifications.module.css +37 -0
- package/src/theme/Theme.tsx +4 -2
- package/src/theme/plasmaCSSVariablesResolver.ts +2 -1
- package/dist/cjs/components/prompt/icons/critical.svg +0 -29
- package/dist/cjs/components/prompt/icons/info.svg +0 -27
- package/dist/cjs/components/prompt/icons/success.svg +0 -27
- package/dist/cjs/components/prompt/icons/warning.svg +0 -27
- package/dist/esm/components/prompt/icons/critical.svg +0 -29
- package/dist/esm/components/prompt/icons/info.svg +0 -27
- package/dist/esm/components/prompt/icons/success.svg +0 -27
- package/dist/esm/components/prompt/icons/warning.svg +0 -27
- package/src/components/prompt/icons/critical.svg +0 -29
- package/src/components/prompt/icons/info.svg +0 -27
- package/src/components/prompt/icons/success.svg +0 -27
- package/src/components/prompt/icons/warning.svg +0 -27
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
> @coveord/plasma-mantine@55.7.2-next.
|
|
2
|
+
> @coveord/plasma-mantine@55.7.2-next.44 build /home/runner/work/plasma/plasma/packages/mantine
|
|
3
3
|
> node ../../scripts/build
|
|
4
4
|
|
|
5
|
-
Successfully compiled:
|
|
6
|
-
Successfully compiled:
|
|
5
|
+
Successfully compiled: 135 files, copied 53 files with swc (413.93ms)
|
|
6
|
+
Successfully compiled: 135 files, copied 53 files with swc (501.79ms)
|
|
7
7
|
✅
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,70 +1,72 @@
|
|
|
1
1
|
|
|
2
|
-
> @coveord/plasma-mantine@55.7.2-next.
|
|
2
|
+
> @coveord/plasma-mantine@55.7.2-next.44 test /home/runner/work/plasma/plasma/packages/mantine
|
|
3
3
|
> cross-env TZ=UTC vitest run --silent
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
[1m[7m[36m RUN [39m[27m[22m [36mv3.1.1 [39m[90m/home/runner/work/plasma/plasma/packages/mantine[39m
|
|
7
7
|
|
|
8
|
-
[
|
|
8
|
+
[2m6:04:34 PM[22m [33m[1m[vite][22m[39m [33m[2m(client)[22m[39m Failed to load source map for /home/runner/work/plasma/plasma/node_modules/.pnpm/monaco-editor@0.52.2/node_modules/monaco-editor/esm/vs/base/common/marked/marked.js.
|
|
9
9
|
Error: An error occurred while trying to read the map file at marked.umd.js.map
|
|
10
10
|
Error: ENOENT: no such file or directory, open '/home/runner/work/plasma/plasma/node_modules/.pnpm/monaco-editor@0.52.2/node_modules/monaco-editor/esm/vs/base/common/marked/marked.umd.js.map'
|
|
11
11
|
at async open (node:internal/fs/promises:639:25)
|
|
12
12
|
at async Object.readFile (node:internal/fs/promises:1243:14)
|
|
13
13
|
at async extractSourcemapFromFile (file:///home/runner/work/plasma/plasma/node_modules/.pnpm/vite@6.2.4_@types+node@22.13.17_jiti@2.4.2_sass@1.86.1_sugarss@4.0.1_postcss@8.5.3__yaml@2.7.0/node_modules/vite/dist/node/chunks/dep-DrOo5SEf.js:14247:53)
|
|
14
14
|
at async loadAndTransform (file:///home/runner/work/plasma/plasma/node_modules/.pnpm/vite@6.2.4_@types+node@22.13.17_jiti@2.4.2_sass@1.86.1_sugarss@4.0.1_postcss@8.5.3__yaml@2.7.0/node_modules/vite/dist/node/chunks/dep-DrOo5SEf.js:41282:27)
|
|
15
|
-
[32m✓[39m src/components/
|
|
16
|
-
[32m✓[39m src/components/
|
|
17
|
-
[32m✓[39m src/components/table/layouts/__tests__/RowLayout.spec.tsx [2m([22m[2m17 tests[22m[2m)[22m[33m
|
|
18
|
-
[32m✓[39m src/components/table/__tests__/TablePagination.spec.tsx [2m([22m[2m7 tests[22m[2m)[22m[33m
|
|
19
|
-
[32m✓[39m src/components/table/__tests__/TableActions.spec.tsx [2m([22m[2m6 tests[22m[2m)[22m[33m
|
|
20
|
-
[33m[2m✓[22m[39m Table.Actions[2m > [22mdisplays the
|
|
21
|
-
|
|
15
|
+
[32m✓[39m src/components/collection/__tests__/Collection.spec.tsx [2m([22m[2m15 tests[22m[2m)[22m[33m 996[2mms[22m[39m
|
|
16
|
+
[32m✓[39m src/components/table/__tests__/Table.spec.tsx [2m([22m[2m12 tests[22m[2m)[22m[33m 1015[2mms[22m[39m
|
|
17
|
+
[32m✓[39m src/components/table/layouts/__tests__/RowLayout.spec.tsx [2m([22m[2m17 tests[22m[2m)[22m[33m 1502[2mms[22m[39m
|
|
18
|
+
[32m✓[39m src/components/table/__tests__/TablePagination.spec.tsx [2m([22m[2m7 tests[22m[2m)[22m[33m 588[2mms[22m[39m
|
|
19
|
+
[32m✓[39m src/components/table/__tests__/TableActions.spec.tsx [2m([22m[2m6 tests[22m[2m)[22m[33m 1148[2mms[22m[39m
|
|
20
|
+
[33m[2m✓[22m[39m Table.Actions[2m > [22mdisplays the actions when the row is selected [33m 309[2mms[22m[39m
|
|
21
|
+
[33m[2m✓[22m[39m Table.Actions[2m > [22mdisplays the secondary actions when the row is selected and the user clicks on more [33m 421[2mms[22m[39m
|
|
22
|
+
[32m✓[39m src/components/table/__tests__/TableColumnsSelector.spec.tsx [2m([22m[2m13 tests[22m[2m)[22m[33m 2331[2mms[22m[39m
|
|
23
|
+
[33m[2m✓[22m[39m TableColumnsSelector[2m > [22mrenders all columns in the dropdown, except the collapsible and the multiselectRow by default [33m 315[2mms[22m[39m
|
|
22
24
|
[32m✓[39m src/components/table/__tests__/use-url-synced-state.unit.spec.ts [2m([22m[2m70 tests[22m[2m)[22m[32m 174[2mms[22m[39m
|
|
23
|
-
[32m✓[39m src/components/inline-confirm/__tests__/InlineConfirm.spec.tsx [2m([22m[2m8 tests[22m[2m)[22m[33m
|
|
24
|
-
[32m✓[39m src/components/table/__tests__/TablePerPage.spec.tsx [2m([22m[2m7 tests[22m[2m)[22m[33m
|
|
25
|
-
[32m✓[39m src/components/table/__tests__/TableFilter.spec.tsx [2m([22m[2m6 tests[22m[2m)[22m[33m
|
|
26
|
-
[32m✓[39m src/components/table/__tests__/TablePredicate.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[33m
|
|
27
|
-
[33m[2m✓[22m[39m Table.Predicate[2m > [22mgoes back to the first page when changing the predicate [33m
|
|
28
|
-
[32m✓[39m src/components/date-range-picker/__tests__/DateRangePickerInlineCalendar.spec.tsx [2m([22m[2m7 tests[22m[2m | [22m[33m1 skipped[39m[2m)[22m[33m
|
|
29
|
-
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mcalls onApply when the user clicks on the apply button [33m
|
|
30
|
-
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mcalls onApply with the selected dates when clicking in the calendar [33m
|
|
31
|
-
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mset end date same as start date if only one date is selected when clicking in the calendar [33m
|
|
32
|
-
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mcalls onApply with the selected dates when typing in the inputs [33m
|
|
33
|
-
[32m✓[39m src/components/code-editor/__tests__/CodeEditor.spec.tsx [2m([22m[2m9 tests[22m[2m | [22m[33m1 skipped[39m[2m)[22m[33m
|
|
34
|
-
[32m✓[39m src/components/table/__tests__/Th.spec.tsx [2m([22m[2m4 tests[22m[2m)[22m[33m
|
|
35
|
-
[32m✓[39m src/components/header/__tests__/Header.spec.tsx [2m([22m[2m8 tests[22m[2m)[22m[32m
|
|
36
|
-
[32m✓[39m src/components/date-range-picker/__tests__/DateRangePickerPopoverCalendar.spec.tsx [2m([22m[2m4 tests[22m[2m | [22m[33m2 skipped[39m[2m)[22m[33m
|
|
37
|
-
[33m[2m✓[22m[39m DateRangePickerPopoverCalendar[2m > [22mcalls onApply with the selected dates when clicking in the calendar [33m
|
|
38
|
-
[32m✓[39m src/components/table/__tests__/TableCollapsibleColumn.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m
|
|
39
|
-
[32m✓[39m src/components/table/__tests__/TableLastUpdated.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[32m
|
|
40
|
-
[32m✓[39m src/components/table/__tests__/TableDateRangePicker.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[33m
|
|
41
|
-
[33m[2m✓[22m[39m Table.DateRangePicker[2m > [22mwhen url sync is activated[2m > [22msets the selected date range in the url [33m
|
|
42
|
-
[32m✓[39m src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts [2m([22m[2m3 tests[22m[2m)[22m[32m
|
|
43
|
-
[32m✓[39m src/components/button/__tests__/Button.spec.tsx [2m([22m[2m4 tests[22m[2m)[22m[
|
|
25
|
+
[32m✓[39m src/components/inline-confirm/__tests__/InlineConfirm.spec.tsx [2m([22m[2m8 tests[22m[2m)[22m[33m 629[2mms[22m[39m
|
|
26
|
+
[32m✓[39m src/components/table/__tests__/TablePerPage.spec.tsx [2m([22m[2m7 tests[22m[2m)[22m[33m 610[2mms[22m[39m
|
|
27
|
+
[32m✓[39m src/components/table/__tests__/TableFilter.spec.tsx [2m([22m[2m6 tests[22m[2m)[22m[33m 695[2mms[22m[39m
|
|
28
|
+
[32m✓[39m src/components/table/__tests__/TablePredicate.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[33m 979[2mms[22m[39m
|
|
29
|
+
[33m[2m✓[22m[39m Table.Predicate[2m > [22mgoes back to the first page when changing the predicate [33m 655[2mms[22m[39m
|
|
30
|
+
[32m✓[39m src/components/date-range-picker/__tests__/DateRangePickerInlineCalendar.spec.tsx [2m([22m[2m7 tests[22m[2m | [22m[33m1 skipped[39m[2m)[22m[33m 3333[2mms[22m[39m
|
|
31
|
+
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mcalls onApply when the user clicks on the apply button [33m 425[2mms[22m[39m
|
|
32
|
+
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mcalls onApply with the selected dates when clicking in the calendar [33m 627[2mms[22m[39m
|
|
33
|
+
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mset end date same as start date if only one date is selected when clicking in the calendar [33m 441[2mms[22m[39m
|
|
34
|
+
[33m[2m✓[22m[39m DateRangePickerInlineCalendar[2m > [22mcalls onApply with the selected dates when typing in the inputs [33m 1530[2mms[22m[39m
|
|
35
|
+
[32m✓[39m src/components/code-editor/__tests__/CodeEditor.spec.tsx [2m([22m[2m9 tests[22m[2m | [22m[33m1 skipped[39m[2m)[22m[33m 546[2mms[22m[39m
|
|
36
|
+
[32m✓[39m src/components/table/__tests__/Th.spec.tsx [2m([22m[2m4 tests[22m[2m)[22m[33m 379[2mms[22m[39m
|
|
37
|
+
[32m✓[39m src/components/header/__tests__/Header.spec.tsx [2m([22m[2m8 tests[22m[2m)[22m[32m 258[2mms[22m[39m
|
|
38
|
+
[32m✓[39m src/components/date-range-picker/__tests__/DateRangePickerPopoverCalendar.spec.tsx [2m([22m[2m4 tests[22m[2m | [22m[33m2 skipped[39m[2m)[22m[33m 1707[2mms[22m[39m
|
|
39
|
+
[33m[2m✓[22m[39m DateRangePickerPopoverCalendar[2m > [22mcalls onApply with the selected dates when clicking in the calendar [33m 1612[2mms[22m[39m
|
|
40
|
+
[32m✓[39m src/components/table/__tests__/TableCollapsibleColumn.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m 347[2mms[22m[39m
|
|
41
|
+
[32m✓[39m src/components/table/__tests__/TableLastUpdated.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[32m 258[2mms[22m[39m
|
|
42
|
+
[32m✓[39m src/components/table/__tests__/TableDateRangePicker.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[33m 3115[2mms[22m[39m
|
|
43
|
+
[33m[2m✓[22m[39m Table.DateRangePicker[2m > [22mwhen url sync is activated[2m > [22msets the selected date range in the url [33m 2850[2mms[22m[39m
|
|
44
|
+
[32m✓[39m src/theme/__tests__/mergeCSSVariablesResolvers.spec.ts [2m([22m[2m3 tests[22m[2m)[22m[32m 6[2mms[22m[39m
|
|
45
|
+
[32m✓[39m src/components/button/__tests__/Button.spec.tsx [2m([22m[2m4 tests[22m[2m)[22m[32m 277[2mms[22m[39m
|
|
44
46
|
[2m[90m↓[39m[22m src/utils/__tests__/overrideComponent.spec.tsx [2m([22m[2m1 test[22m[2m | [22m[33m1 skipped[39m[2m)[22m
|
|
45
|
-
[32m✓[39m src/components/button/__tests__/ButtonWithDisabledTooltip.spec.tsx [2m([22m[2m3 tests[22m[2m | [22m[33m1 skipped[39m[2m)[22m[32m
|
|
46
|
-
[32m✓[39m src/components/date-range-picker/__tests__/DateRangePickerPresetSelect.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m
|
|
47
|
-
[33m[2m✓[22m[39m DateRangePickerPresetSelect[2m > [22mcalls onChange when selecting a preset [33m
|
|
48
|
-
[32m✓[39m src/components/date-time-range-picker/__tests__/DateTimeRangePicker.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m
|
|
49
|
-
[33m[2m✓[22m[39m DateTimeRangePicker[2m > [22mupdates with the selected dates when choosing a preset [33m
|
|
50
|
-
[32m✓[39m src/components/last-updated/__tests__/LastUpdated.spec.tsx [2m([22m[2m5 tests[22m[2m)[22m[32m
|
|
51
|
-
[32m✓[39m src/hooks/__tests__/useControlledList.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[32m
|
|
52
|
-
[32m✓[39m src/components/prompt/__tests__/Prompt.spec.tsx [2m([22m[
|
|
53
|
-
[32m✓[39m src/components/date-range-picker/__tests__/EditableDateRangePicker.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m
|
|
54
|
-
[33m[2m✓[22m[39m EditableDateRangePicker[2m > [22mupdates when editing values [33m
|
|
55
|
-
[32m✓[39m src/
|
|
56
|
-
[32m✓[39m src/
|
|
57
|
-
[32m✓[39m src/components/browser-preview/__tests__/BrowserPreview.spec.tsx [2m([22m[2m4 tests[22m[2m)[22m[32m
|
|
58
|
-
[32m✓[39m src/components/child-form/__tests__/ChildForm.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[32m
|
|
59
|
-
[32m✓[39m src/components/modal/__tests__/Modal.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[32m
|
|
60
|
-
[32m✓[39m src/components/modal/__tests__/ModalFooter.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[32m
|
|
61
|
-
[32m✓[39m src/components/menu/__tests__/Menu.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m
|
|
62
|
-
[32m✓[39m src/components/code-editor/search/__tests__/Search.unit.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m
|
|
63
|
-
[32m✓[39m src/components/sticky-footer/__tests__/StickyFooter.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m
|
|
64
|
-
[32m✓[39m src/components/blank-slate/__tests__/BlankSlate.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m
|
|
47
|
+
[32m✓[39m src/components/button/__tests__/ButtonWithDisabledTooltip.spec.tsx [2m([22m[2m3 tests[22m[2m | [22m[33m1 skipped[39m[2m)[22m[32m 286[2mms[22m[39m
|
|
48
|
+
[32m✓[39m src/components/date-range-picker/__tests__/DateRangePickerPresetSelect.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m 427[2mms[22m[39m
|
|
49
|
+
[33m[2m✓[22m[39m DateRangePickerPresetSelect[2m > [22mcalls onChange when selecting a preset [33m 358[2mms[22m[39m
|
|
50
|
+
[32m✓[39m src/components/date-time-range-picker/__tests__/DateTimeRangePicker.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m 458[2mms[22m[39m
|
|
51
|
+
[33m[2m✓[22m[39m DateTimeRangePicker[2m > [22mupdates with the selected dates when choosing a preset [33m 354[2mms[22m[39m
|
|
52
|
+
[32m✓[39m src/components/last-updated/__tests__/LastUpdated.spec.tsx [2m([22m[2m5 tests[22m[2m)[22m[32m 160[2mms[22m[39m
|
|
53
|
+
[32m✓[39m src/hooks/__tests__/useControlledList.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[32m 21[2mms[22m[39m
|
|
54
|
+
[32m✓[39m src/components/prompt/__tests__/Prompt.spec.tsx [2m([22m[2m6 tests[22m[2m)[22m[33m 347[2mms[22m[39m
|
|
55
|
+
[32m✓[39m src/components/date-range-picker/__tests__/EditableDateRangePicker.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[33m 1531[2mms[22m[39m
|
|
56
|
+
[33m[2m✓[22m[39m EditableDateRangePicker[2m > [22mupdates when editing values [33m 1320[2mms[22m[39m
|
|
57
|
+
[32m✓[39m src/theme/__tests__/plasmaCSSVariablesResolver.spec.ts [2m([22m[2m1 test[22m[2m)[22m[32m 8[2mms[22m[39m
|
|
58
|
+
[32m✓[39m src/components/copyToClipboard/__tests__/CopyToClipboard.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[33m 337[2mms[22m[39m
|
|
59
|
+
[32m✓[39m src/components/browser-preview/__tests__/BrowserPreview.spec.tsx [2m([22m[2m4 tests[22m[2m)[22m[32m 267[2mms[22m[39m
|
|
60
|
+
[32m✓[39m src/components/child-form/__tests__/ChildForm.spec.tsx [2m([22m[2m3 tests[22m[2m)[22m[32m 223[2mms[22m[39m
|
|
61
|
+
[32m✓[39m src/components/modal/__tests__/Modal.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[32m 122[2mms[22m[39m
|
|
62
|
+
[32m✓[39m src/components/modal/__tests__/ModalFooter.spec.tsx [2m([22m[2m2 tests[22m[2m)[22m[32m 53[2mms[22m[39m
|
|
63
|
+
[32m✓[39m src/components/menu/__tests__/Menu.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m 117[2mms[22m[39m
|
|
64
|
+
[32m✓[39m src/components/code-editor/search/__tests__/Search.unit.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m 160[2mms[22m[39m
|
|
65
|
+
[32m✓[39m src/components/sticky-footer/__tests__/StickyFooter.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m 55[2mms[22m[39m
|
|
66
|
+
[32m✓[39m src/components/blank-slate/__tests__/BlankSlate.spec.tsx [2m([22m[2m1 test[22m[2m)[22m[32m 39[2mms[22m[39m
|
|
65
67
|
|
|
66
68
|
[2m Test Files [22m [1m[32m38 passed[39m[22m[2m | [22m[33m1 skipped[39m[90m (39)[39m
|
|
67
|
-
[2m Tests [22m [1m[
|
|
68
|
-
[2m Start at [22m
|
|
69
|
-
[2m Duration [22m
|
|
69
|
+
[2m Tests [22m [1m[32m248 passed[39m[22m[2m | [22m[33m6 skipped[39m[90m (254)[39m
|
|
70
|
+
[2m Start at [22m 18:04:25
|
|
71
|
+
[2m Duration [22m 83.79s[2m (transform 6.46s, setup 11.21s, collect 174.96s, tests 25.50s, environment 21.46s, prepare 4.06s)[22m
|
|
70
72
|
|