@salesforce/core 3.31.12 → 3.31.15
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/lib/testSetup.js +2 -0
- package/package.json +1 -1
package/lib/testSetup.js
CHANGED
|
@@ -469,6 +469,8 @@ exports.stubContext = stubContext;
|
|
|
469
469
|
* @param testContext
|
|
470
470
|
*/
|
|
471
471
|
const restoreContext = (testContext) => {
|
|
472
|
+
// Restore the default value for this setting on restore.
|
|
473
|
+
global_1.Global.SFDX_INTEROPERABILITY = true;
|
|
472
474
|
testContext.SANDBOX.restore();
|
|
473
475
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
|
474
476
|
Object.values(testContext.SANDBOXES).forEach((theSandbox) => theSandbox.restore());
|