We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd18c4 commit 634d337Copy full SHA for 634d337
bin/helpers/capabilityHelper.js
@@ -93,7 +93,7 @@ const validate = (bsConfig) => {
93
94
if(!bsConfig.run_settings.cypress_proj_dir) reject(Constants.validationMessages.EMPTY_SPEC_FILES);
95
96
- if (!fs.existsSync(path.join(bsConfig.run_settings.cypress_proj_dir, 'cypress.json'))) reject(Constants.validationMessages.CYPRESS_JSON_NOT_FOUND + cypressProjectDir);
+ if (!fs.existsSync(path.join(bsConfig.run_settings.cypress_proj_dir, 'cypress.json'))) reject(Constants.validationMessages.CYPRESS_JSON_NOT_FOUND + bsConfig.run_settings.cypress_proj_dir);
97
98
resolve(Constants.validationMessages.VALIDATED);
99
});
0 commit comments