英文:
Error: Can't walk dependency graph: Cannot find module '@badeball/cypress-cucumber-preprocessor/steps'
问题
我在运行我的特性文件时遇到了这个错误,不知道出了什么问题。以下是截图:
英文:
I am getting this error while running my feature file don't know what's wrong sharing the screenshots below
答案1
得分: 0
你可能使用的是 @badeball/cypress-cucumber-preprocessor
包的旧版本。
因为现在的导入方式是:
import {
DataTable,
Given,
Then,
When,
} from "@badeball/cypress-cucumber-preprocessor";
英文:
Probably, you had an old version of the package @badeball/cypress-cucumber-preprocessor
.
Because right now, the import is:
import {
DataTable,
Given,
Then,
When,
} from "@badeball/cypress-cucumber-preprocessor";
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论