@strapi/plugin-color-picker 4.4.1 → 4.4.2
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.
|
@@ -25,6 +25,21 @@ const App = (
|
|
|
25
25
|
);
|
|
26
26
|
|
|
27
27
|
describe('<ColorPickerInput />', () => {
|
|
28
|
+
/**
|
|
29
|
+
* We do this because –
|
|
30
|
+
* https://github.com/facebook/jest/issues/12670
|
|
31
|
+
*/
|
|
32
|
+
beforeAll(() => {
|
|
33
|
+
jest.setTimeout(30000);
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Reset timeout to what is expected
|
|
38
|
+
*/
|
|
39
|
+
afterAll(() => {
|
|
40
|
+
jest.setTimeout(5000);
|
|
41
|
+
});
|
|
42
|
+
|
|
28
43
|
it('renders and matches the snapshot', () => {
|
|
29
44
|
const { container } = render(App);
|
|
30
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/plugin-color-picker",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "Strapi maintained Custom Fields",
|
|
5
5
|
"strapi": {
|
|
6
6
|
"name": "color-picker",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"node": ">=14.19.1 <=18.x.x",
|
|
37
37
|
"npm": ">=6.0.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "7f6d6ace893538ad130882e17f91e8cb8822e8a3"
|
|
40
40
|
}
|