We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaee597 commit 79fc46dCopy full SHA for 79fc46d
bin/commands/runs.js
@@ -116,7 +116,7 @@ module.exports = function run(args) {
116
}
117
118
if (bsConfig.run_settings.cypress_version && bsConfig.run_settings.cypress_version !== data.cypress_version) {
119
- if (bsConfig.run_settings.cypress_version.match(Constants.LATEST_VERSION_SYNTAX_REGEX)) {
+ if (bsConfig.run_settings.cypress_version.toString().match(Constants.LATEST_VERSION_SYNTAX_REGEX)) {
120
let versionMessage = utils.latestSyntaxToActualVersionMessage(bsConfig.run_settings.cypress_version, data.cypress_version);
121
logger.info(versionMessage);
122
} else {
0 commit comments