@shopgate/pwa-unit-test 7.20.0-beta.4 → 7.20.0-beta.6
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/package.json +1 -1
- package/testSetup.js +2 -0
package/package.json
CHANGED
package/testSetup.js
CHANGED
|
@@ -25,3 +25,5 @@ Object.defineProperty(window, 'localStorage', { value: localStorageMock });
|
|
|
25
25
|
|
|
26
26
|
// Mock the AppCommand class by default to avoid log spamming during test runs
|
|
27
27
|
jest.mock('@shopgate/pwa-core/classes/AppCommand');
|
|
28
|
+
jest.mock('@shopgate/theme-gmd/extensions/reducers', () => null);
|
|
29
|
+
jest.mock('@shopgate/theme-ios11/extensions/reducers', () => null);
|