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 b2a3048 commit c3db0c7Copy full SHA for c3db0c7
lib/featuresLoader.js
@@ -33,7 +33,7 @@ const createCucumber = (
33
.find(fileSteps => fileSteps[filePath])
34
[filePath].join("\n")}
35
36
- createTestsFromFeature('${filePath}', \`${spec}\`);
+ createTestsFromFeature('${path.basename(filePath)}', \`${spec}\`);
37
})
38
`
39
)
lib/getStepDefinitionsPaths.js
@@ -11,7 +11,6 @@ const getStepDefinitionsPaths = filePath => {
11
const nonGlobalPattern = `${getStepDefinitionPathsFrom(
12
filePath
13
)}/**/*.+(js|ts)`;
14
- console.log("GOZDECKI nonGlobalPattern", nonGlobalPattern);
15
const commonPath =
16
loaded.config.commonPath || `${stepDefinitionPath()}/common/`;
17
const commonDefinitionsPattern = `${commonPath}**/*.+(js|ts)`;
0 commit comments