@mablhq/mabl-cli 2.51.28 → 2.51.29

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.
@@ -250,7 +250,7 @@ async function executeRunCloudTest(test, browsers, branchName, apiClient, maybeD
250
250
  const foundDeployments = deploymentsResult.deployments
251
251
  ? deploymentsResult.deployments.filter((deployment) => (!applicationId || deployment.application_id === applicationId) &&
252
252
  (!environmentId || deployment.environment_id === environmentId) &&
253
- deployment.deployment_type === expectedDeploymentType)
253
+ (0, runUtil_1.isDeploymentMatchByType)(deployment, expectedDeploymentType))
254
254
  : [];
255
255
  if (!foundDeployments.length) {
256
256
  throw new Error('No configuration was found for the applicationId/environmentId specified');