@carbonorm/carbonreact 3.3.7 → 3.3.9
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/compileValidSQL.cjs +11 -4
- package/compileValidSQL.tsx +14 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/hoc/setupTests.tsx +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4287,7 +4287,7 @@ function setupTests ({ sqlDirectory = './logs/rest/', logsDirectory = './logs/te
|
|
|
4287
4287
|
await waitFor(async () => {
|
|
4288
4288
|
expect(checkAllRequestsComplete()).toEqual(true);
|
|
4289
4289
|
}, { timeout: 3000, interval: 1000 });
|
|
4290
|
-
const jsonSQL = JSON.stringify(validSQL, undefined, 2) ?? '';
|
|
4290
|
+
const jsonSQL = JSON.stringify(validSQL, undefined, 2) ?? '{}';
|
|
4291
4291
|
console.log('After each Test (' + expect.getState().currentTestName + ')', validSQL, expect.getState());
|
|
4292
4292
|
// restore `window.location` to the original `jsdom`
|
|
4293
4293
|
// `Location` object
|