@strapi/plugin-color-picker 4.4.1 → 4.4.3

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.1",
3
+ "version": "4.4.3",
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": "fa503ef438b8c6b7335b9bb79c9d690631b46bd6"
39
+ "gitHead": "f99314ead7f0fdf82b921b9d8f0282a91e952ca8"
40
40
  }