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

Ruby: Disregard meta messages when running locally/remotely #41

Closed
luke-hill opened this issue Sep 28, 2023 · 0 comments Β· Fixed by #43
Closed

Ruby: Disregard meta messages when running locally/remotely #41

luke-hill opened this issue Sep 28, 2023 · 0 comments Β· Fixed by #43

Comments

@luke-hill
Copy link
Contributor

πŸ‘“ What did you see?

In Ruby, we disregard additional CI messages. But we don't disregard missing CI messages.

Implement the same logic again

βœ… What did you expect to see?

missing_keys = (expected_keys - found_keys).reject { |key|
  ENV['CI'] && found.class == Cucumber::Messages::Meta && key == :ci
}

extra_keys = (found_keys - expected_keys).reject { |key|
  ENV['CI'] && found.class == Cucumber::Messages::Meta && key == :ci
}

πŸ“¦ Which tool/library version are you using?

πŸ”¬ How could we reproduce it?

Steps to reproduce the behavior:

  1. Install '...' version '...'
  2. Create a file called '....'
  3. Run command '....'
  4. See error '....'

πŸ“š Any additional context?


This text was originally generated from a template, then edited by hand. You can modify the template here.

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 a pull request may close this issue.

1 participant