gpt4 book ai didi

playwright - 运行时出错 "npx folio": First argument must use the object destructuring pattern: _x

转载 作者:行者123 更新时间:2023-12-05 06:51:40 37 4
gpt4 key购买 nike

我有剧作家测试,我用这个命令运行测试:npx folio

但是当我运行测试时,我收到了这个错误信息:

第一个参数必须使用对象解构模式:_x

我确实尝试删除 .babelrc 文件,它应该根据这个 thread 工作.但这对我来说没有任何改变。

如何解决这个错误?

最佳答案

如果向 beforeEachafterEach 提供函数并且不将对象作为其第一个参数,您将看到此错误。所以这行不通:

const before = (aFixture) => {...}
test.beforeEach(before);

它需要是这样的:

const before = ({ aFixture }) => {...}
test.beforeEach(before);

关于playwright - 运行时出错 "npx folio": First argument must use the object destructuring pattern: _x,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66122161/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com