So I have tried executing few test cases written in BDD framework so I have feature file and respective step def file so when I run this feature file using test runner those cases runs successfully but when I tried it with lambdatest cases are giving me a below error
Your pluginsFile is invalid: E:\lambda-node-remote-client\d6143aae-0fc1-44bd-b7f1-7cc2cca767c6\project\cypress\plugins\index.js It threw an error when required, check the stack trace below: Error: Cannot find module ‘cypress-cucumber-preprocessor’ Require stack:
- E:\lambda-node-remote-client\d6143aae-0fc1-44bd-b7f1-7cc2cca767c6\project\cypress\plugins\index.js
- E:\lambda-node-remote-client\cypress-binary\9.6.0\Cypress\resources\app\packages\server\lib\plugins\child\run_plugins.js
- E:\lambda-node-remote-client\cypress-binary\9.6.0\Cypress\resources\app\packages\server\lib\plugins\child\index.js at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15) at Function.Module._load (internal/modules/cjs/loader.js:725:27) at Module.require (internal/modules/cjs/loader.js:952:19)
Below are my config.json detail : “run_settings”: { “cypress_config_file”: “cypress.json”, “reporter_config_file”: “base_reporter_config.json”, “build_name”: “build-name”, “parallels”: 1, “specs”: “./cypress/integration/example/*.feature”, “ignore_files”: “”, “network”: false, “headless”: false, “npm_dependencies”: { “cypress”: “9.6” }, “feature_file_suppport”: true }, “tunnel_settings”: { “tunnel”: false, “tunnel_name”: null }