是否有任何黄瓜命令来获取所有场景名称?

Is there any cucumber command to get all the scenario names?

我的存储库中有超过 1K 个场景,我需要获取所有场景名称及其文件夹路径来准备报告。

如果有 cucumber 命令获取所有场景名称和文件夹路径,这对我很有帮助。

我不知道 cucumber 命令,但简单的 shell 搜索似乎对我产生了很好的结果。

grep -r 'Feature' path-to-directory
./features/a_feature.feature:Feature: This is the first feature returned.