@dev-blinq/cucumber_client 1.0.1349-dev → 1.0.1350-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.
@@ -61,6 +61,11 @@ export function parseRouteFiles(projectDir, step) {
61
61
  const routeFolder = path.join(projectDir, "data", "routes");
62
62
  const templateRouteMap = new Map();
63
63
 
64
+ if (!existsSync(routeFolder)) {
65
+ step.routeItems = null;
66
+ return;
67
+ }
68
+
64
69
  // Go over all the files in the route folder and parse them
65
70
  const routeFiles = readdirSync(routeFolder).filter((file) => file.endsWith(".json"));
66
71
  for (const file of routeFiles) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-blinq/cucumber_client",
3
- "version": "1.0.1349-dev",
3
+ "version": "1.0.1350-dev",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",