-
-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scenario Description #53
Conversation
# Conflicts: # package-lock.json
- multi line scenario description - add test
@@ -240,6 +240,10 @@ function generateReport(options) { | |||
scenario.time = formatDuration(scenario.duration) | |||
} | |||
|
|||
if (scenario.hasOwnProperty('description') && scenario.description) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I've seem scenario.description
will always be a string, so the if(scenario.description)
should be sufficient, or are there any other cases I'm not seeing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"description" is not mandatory on json structure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok?
Sorry for my late reaction, but this looks good, tnx. Can you please check my comment? Tnx! |
Added support to scenario description.