redux-freeform 5.8.0 → 5.8.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/README.md +7 -0
- package/dist/redux-freeform.cjs.js +166 -1297
- package/dist/redux-freeform.esm.js +166 -1297
- package/dist/redux-freeform.umd.js +166 -1297
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -56,3 +56,10 @@ const { reducer, mapStateToProps, mapDispatchToProps } = createFormState(
|
|
|
56
56
|
formConfig
|
|
57
57
|
);
|
|
58
58
|
```
|
|
59
|
+
|
|
60
|
+
## Testing
|
|
61
|
+
|
|
62
|
+
Ava is the test runner for Redux Freeform.
|
|
63
|
+
|
|
64
|
+
- To run tests locally: `yarn run test`
|
|
65
|
+
- To check test coverage locally: `yarn run coverage`
|