@dev-blinq/cucumber_client 1.0.1369-dev → 1.0.1370-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ export const projectDocument = (folder, featureName = null, scenarioName = null,
15
15
  // read all the feature files in the project folder under features folder
16
16
  let featureFiles = [];
17
17
  const featuresDir = path.join(folder, "features");
18
- featureFiles = fs.readdirSync(featuresDir).filter((file) => {
18
+ featureFiles = fs.readdirSync(featuresDir, { recursive: true }).filter((file) => {
19
19
  return file.endsWith(".feature");
20
20
  });
21
21
  const documents = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-blinq/cucumber_client",
3
- "version": "1.0.1369-dev",
3
+ "version": "1.0.1370-dev",
4
4
  "description": " ",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",