You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
Currently CFRG only supports filtering the report by a single tag. #39 has been logged to eventually support expanding that functionality to include additional tags.
It would also be nice to be able to use a wildcard (*) that would be able to match a range of tags when filtering. (e.g. if you have scenarios tagged with dog_walking and others tagged with dog_eating, then it would be nice to be able to filter the report with dog* and have all those scenarios included in the report.
The text was updated successfully, but these errors were encountered:
implementation-wise, i think the simplest way to support this would be to see if the string ends in *. if it doesn't then use string.startsWith instead of string === for matching
Currently CFRG only supports filtering the report by a single tag. #39 has been logged to eventually support expanding that functionality to include additional tags.
It would also be nice to be able to use a wildcard (*) that would be able to match a range of tags when filtering. (e.g. if you have scenarios tagged with
dog_walking
and others tagged withdog_eating
, then it would be nice to be able to filter the report withdog*
and have all those scenarios included in the report.The text was updated successfully, but these errors were encountered: