Skip to content

Commit

Permalink
CR
Browse files Browse the repository at this point in the history
  • Loading branch information
MoLow committed Dec 12, 2022
1 parent 300df2e commit 3fef532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/test_runner/yaml_parser.js
Expand Up @@ -73,7 +73,7 @@ function getYamlValue(value) {
if (value === 'false') {
return false;
}
if (value && !NumberIsNaN(Number(value))) {
if (value !== '' && !NumberIsNaN(value)) {
return Number(value);
}
return value;
Expand Down

0 comments on commit 3fef532

Please sign in to comment.