From 5e9991d6d89f7b02b3ba36b05dae8d4a22adf3ef Mon Sep 17 00:00:00 2001 From: Ryan Manuel Date: Fri, 25 Mar 2022 18:50:50 -0500 Subject: [PATCH] Fix system tests timing out --- packages/data-context/src/data/ProjectLifecycleManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/data-context/src/data/ProjectLifecycleManager.ts b/packages/data-context/src/data/ProjectLifecycleManager.ts index 7088bd1519..0e135cec1f 100644 --- a/packages/data-context/src/data/ProjectLifecycleManager.ts +++ b/packages/data-context/src/data/ProjectLifecycleManager.ts @@ -421,7 +421,7 @@ export class ProjectLifecycleManager { assert(this._configManager) this._configManager.setTestingType(testingType) - if (this.isTestingTypeConfigured(testingType) && !(this.ctx.coreData.forceReconfigureProject && this.ctx.coreData.forceReconfigureProject[testingType])) { + if (this.ctx.isRunMode || (this.isTestingTypeConfigured(testingType) && !(this.ctx.coreData.forceReconfigureProject && this.ctx.coreData.forceReconfigureProject[testingType]))) { this._configManager.loadTestingType() } }