@ornikar/jest-config-react-native 2.1.0-beta.0 → 3.1.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,52 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.1.1](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@3.1.0...@ornikar/jest-config-react-native@3.1.1) (2022-01-05)
7
+
8
+ **Note:** Version bump only for package @ornikar/jest-config-react-native
9
+
10
+
11
+
12
+
13
+
14
+ # [3.1.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@3.0.0...@ornikar/jest-config-react-native@3.1.0) (2021-12-20)
15
+
16
+
17
+ ### Features
18
+
19
+ * **deps:** update dependency jest-expo to v44 ([#608](https://github.com/ornikar/shared-configs/issues/608)) ([73df23e](https://github.com/ornikar/shared-configs/commit/73df23e2f832cc6323fd4b5dd1c812fc8a5ec9c8))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@2.1.0...@ornikar/jest-config-react-native@3.0.0) (2021-12-15)
26
+
27
+
28
+ ### Features
29
+
30
+ * **jest-config-react:** remove random wait, add global addParameters [no issue] ([#601](https://github.com/ornikar/shared-configs/issues/601)) ([764ef11](https://github.com/ornikar/shared-configs/commit/764ef11d9bd29e309438040e06fbdf4f9f6a2e9e))
31
+
32
+
33
+ ### BREAKING CHANGES
34
+
35
+ * **jest-config-react:** wait(0) is removed, if you need to wait add waitFor: () => wait(0)
36
+
37
+
38
+
39
+
40
+
41
+ # [2.1.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@2.0.1...@ornikar/jest-config-react-native@2.1.0) (2021-12-14)
42
+
43
+
44
+ ### Features
45
+
46
+ * **deps:** update dependency @testing-library/react-native to v9 ([#599](https://github.com/ornikar/shared-configs/issues/599)) ([97e7278](https://github.com/ornikar/shared-configs/commit/97e72787fc6301146523b9a373ed8cfedcfc40ad))
47
+
48
+
49
+
50
+
51
+
6
52
  ## [2.0.1](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@2.0.0...@ornikar/jest-config-react-native@2.0.1) (2021-12-09)
7
53
 
8
54
 
@@ -77,7 +77,7 @@ exports.storiesOf = (groupName) => {
77
77
  : ({ children }) => decorateStory(() => children, [...localDecorators, ...globalDecorators])(context);
78
78
 
79
79
  const rtlApi = render(story(context), { wrapper: WrappingComponent });
80
- if (waitForExpectation) await waitFor(() => waitForExpectation(rtlApi, expect));
80
+ if (waitForExpectation) await waitFor(() => waitForExpectation(rtlApi, expect, { parameters }));
81
81
  expect(rtlApi.toJSON()).toMatchSnapshot();
82
82
  });
83
83
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/jest-config-react-native",
3
- "version": "2.1.0-beta.0",
3
+ "version": "3.1.1",
4
4
  "description": "jest config",
5
5
  "repository": "ornikar/shared-configs",
6
6
  "main": "jest-preset.js",
@@ -14,18 +14,19 @@
14
14
  "peerDependencies": {
15
15
  "@testing-library/react-hooks": "^7.0.0",
16
16
  "@testing-library/react-native": "^7.2.0 || ^8.0.0 || ^9.0.0",
17
- "jest-expo": "^41.0.0 || ^42.0.0 || ^43.0.0",
17
+ "jest-expo": "^41.0.0 || ^42.0.0 || ^43.0.0 || ^44.0.0",
18
18
  "react": "^17.0.0",
19
19
  "react-dom": "^17.0.0"
20
20
  },
21
21
  "dependencies": {
22
- "@ornikar/jest-config": "^7.0.1",
22
+ "@ornikar/jest-config": "^7.1.0",
23
23
  "lodash.mergewith": "4.6.2"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@testing-library/react-hooks": "7.0.2",
27
27
  "@testing-library/react-native": "9.0.0",
28
- "jest-expo": "43.0.1",
28
+ "jest-expo": "44.0.1",
29
29
  "react": "17.0.2"
30
- }
30
+ },
31
+ "gitHead": "9f298f2b085415d8ba48da3d07db25c1ea73763e"
31
32
  }