-
Notifications
You must be signed in to change notification settings - Fork 156
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
Upgraded for compatibility with Cucumber v8.9.1 + dependencies updated #266
Conversation
.DS_Store | ||
/samples/.DS_Store | ||
templates/.DS_Store | ||
templates/_common/.DS_Store | ||
test/.DS_Store | ||
test/features/.DS_Store |
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.
All those should be on your global git configuration, not in the repository.
It does not make sense to start ignoring leftovers made by each operating system or IDE.
|
||
function trackScenarioRetries(scenarios) { |
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.
It would be good to list this as a feature in the description of the PR, plus in the changelog.
function selectHandler() { | ||
var selectedItem = chart.getSelection()[0]; | ||
if (selectedItem) { | ||
var featureStatus = data.getValue(selectedItem.row, 0); | ||
if (featureStatus === 'Passed'){ | ||
var x = $('.feature-passed'); | ||
}else{ | ||
var x = $('.feature-failed'); | ||
} | ||
if (x && x.css('display') === "none") { | ||
x.css('display', 'block'); | ||
} else { | ||
x.css('display', 'none'); | ||
} | ||
} | ||
} | ||
google.visualization.events.addListener(chart, 'select', selectHandler); |
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.
@carlosbermejop would you mind to have this feature back?
It was really helpful for my team.
Hi!,
This is the upgrade to the project to make it compatible with Cucumber v8.9.1. The remaining dependencies were also updated except for
chalk
, as it's only compatible with type module projects.Cheers!