@openmrs/esm-react-utils 4.0.0-pre.1 → 4.0.1-pre.204

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.
@@ -1,16 +1,19 @@
1
- @openmrs/esm-react-utils:build: cache hit, replaying output 8dd1c7f77fc9aa61
1
+ @openmrs/esm-react-utils:build: cache hit, replaying output f736ada54cf5fffb
2
2
  @openmrs/esm-react-utils:build: $ webpack --mode=production
3
- @openmrs/esm-react-utils:build: asset openmrs-esm-react-utils.js 138 KiB [emitted] [minimized] (name: main) 2 related assets
4
- @openmrs/esm-react-utils:build: orphan modules 193 KiB [orphan] 120 modules
3
+ @openmrs/esm-react-utils:build: asset openmrs-esm-react-utils.js 85.5 KiB [emitted] [minimized] (name: main) 2 related assets
4
+ @openmrs/esm-react-utils:build: orphan modules 199 KiB [orphan] 120 modules
5
5
  @openmrs/esm-react-utils:build: runtime modules 2.14 KiB 8 modules
6
- @openmrs/esm-react-utils:build: built modules 737 KiB [built]
7
- @openmrs/esm-react-utils:build:  cacheable modules 736 KiB
8
- @openmrs/esm-react-utils:build:  modules by path ../../../node_modules/ 535 KiB 5 modules
9
- @openmrs/esm-react-utils:build:  ./src/index.ts + 120 modules 194 KiB [built] [code generated]
10
- @openmrs/esm-react-utils:build:  ../esm-state/dist/openmrs-esm-state.js 7.52 KiB [built] [code generated]
11
- @openmrs/esm-react-utils:build:  modules by path external "@openmrs/ 168 bytes
12
- @openmrs/esm-react-utils:build:  external "@openmrs/esm-config" 42 bytes [built] [code generated]
13
- @openmrs/esm-react-utils:build:  external "@openmrs/esm-extensions" 42 bytes [built] [code generated]
6
+ @openmrs/esm-react-utils:build: built modules 273 KiB [built]
7
+ @openmrs/esm-react-utils:build:  modules by path ../../../node_modules/lodash/*.js 61.2 KiB
8
+ @openmrs/esm-react-utils:build:  ../../../node_modules/lodash/isEqual.js 986 bytes [built] [code generated]
9
+ @openmrs/esm-react-utils:build:  + 88 modules
10
+ @openmrs/esm-react-utils:build:  modules by path external "@openmrs/ 168 bytes
11
+ @openmrs/esm-react-utils:build:  external "@openmrs/esm-config" 42 bytes [built] [code generated]
12
+ @openmrs/esm-react-utils:build:  external "@openmrs/esm-extensions" 42 bytes [built] [code generated]
14
13
  @openmrs/esm-react-utils:build:  + 2 modules
15
- @openmrs/esm-react-utils:build:  + 5 modules
16
- @openmrs/esm-react-utils:build: webpack 5.70.0 compiled successfully in 17940 ms
14
+ @openmrs/esm-react-utils:build:  modules by path ../../../node_modules/systemjs-webpack-interop/ 3.27 KiB
15
+ @openmrs/esm-react-utils:build:  ../../../node_modules/systemjs-webpack-interop/auto-public-path/1.js 89 bytes [built] [code generated]
16
+ @openmrs/esm-react-utils:build:  ../../../node_modules/systemjs-webpack-interop/auto-public-path/auto-public-path.js 846 bytes [built] [code generated]
17
+ @openmrs/esm-react-utils:build:  ../../../node_modules/systemjs-webpack-interop/public-path.js 2.36 KiB [built] [code generated]
18
+ @openmrs/esm-react-utils:build:  + 8 modules
19
+ @openmrs/esm-react-utils:build: webpack 5.74.0 compiled successfully in 6964 ms
@@ -64,6 +64,7 @@ export function getGlobalStore<TState = any>(
64
64
 
65
65
  function instrumentedStore<T>(name: string, store: Store<T>) {
66
66
  return {
67
+ action: jest.spyOn(store, "action"),
67
68
  getState: jest.spyOn(store, "getState"),
68
69
  setState: jest.spyOn(store, "setState"),
69
70
  subscribe: jest.spyOn(store, "subscribe"),