We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d178e1 commit b6d8f5dCopy full SHA for b6d8f5d
src/cli/configuration_builder.ts
@@ -143,7 +143,7 @@ export default class ConfigurationBuilder {
143
144
async expandFeaturePaths(featurePaths: string[]): Promise<string[]> {
145
featurePaths = featurePaths.map((p) => p.replace(/(:\d+)*$/g, '')) // Strip line numbers
146
- featurePaths = [...new Set(featurePaths)] // Deduplicate the feature files; // Deduplicate the feature files
+ featurePaths = [...new Set(featurePaths)] // Deduplicate the feature files
147
return this.expandPaths(featurePaths, '.feature')
148
}
149
0 commit comments