@openmrs/esm-react-utils 3.4.1-pre.151 → 3.4.1-pre.161

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 6d7419a2ad0302e2
1
+ @openmrs/esm-react-utils:build: cache hit, replaying output 8706ac0e88eeab47
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 84.2 KiB [emitted] [minimized] (name: main) 2 related assets
4
+ @openmrs/esm-react-utils:build: orphan modules 196 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]
6
+ @openmrs/esm-react-utils:build: built modules 269 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
11
10
  @openmrs/esm-react-utils:build:  modules by path external "@openmrs/ 168 bytes
12
11
  @openmrs/esm-react-utils:build:  external "@openmrs/esm-config" 42 bytes [built] [code generated]
13
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 9586 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.70.0 compiled successfully in 9407 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"),