Skip to content
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

Merged
merged 3 commits into from
Mar 1, 2023

Conversation

carlosbermejop
Copy link

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!

@larryg01 larryg01 merged commit 652a6de into gkushang:develop Mar 1, 2023
@srbarrios
Copy link
Contributor

This refactor has a regression, it removes this feature #154 implemented here #183

Sorry that I only figured out now, we upgrade our dependencies only now.

Comment on lines +6 to +11
.DS_Store
/samples/.DS_Store
templates/.DS_Store
templates/_common/.DS_Store
test/.DS_Store
test/features/.DS_Store
Copy link
Contributor

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) {
Copy link
Contributor

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.

Comment on lines -45 to -61
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);
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants