theprogrammablemind_4wp 9.3.0-beta.59 → 9.3.0-beta.60

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.js +6 -0
package/package.json CHANGED
@@ -70,6 +70,6 @@
70
70
  "sort-json": "^2.0.0",
71
71
  "uuid": "^8.3.2"
72
72
  },
73
- "version": "9.3.0-beta.59",
73
+ "version": "9.3.0-beta.60",
74
74
  "license": "UNLICENSED"
75
75
  }
package/src/config.js CHANGED
@@ -336,6 +336,12 @@ const handleBridgeProps = (config, bridge, { addFirst, uuid } = {}) => {
336
336
  }
337
337
  }
338
338
  if (bridge.check) {
339
+ if (!config.testConfig) {
340
+ config.testConfig = {}
341
+ }
342
+ if (!config.testConfig.checks) {
343
+ config.testConfig.checks = {}
344
+ }
339
345
  if (!config.testConfig?.checks?.context) {
340
346
  config.testConfig.checks.context = []
341
347
  }