我已经配置了 codeceptjs,并且在编写第一个测试时遇到了一些我无法弄清楚的错误,代码如下。
但奇怪的是它执行得很完美。但我想确定为什么这是一个错误。我是否缺少配置或其他任何内容?
配置文件:
提前致谢。
我认为您在安装 codeceptjs 时被拒绝创建自定义演员的请求:
? 您想在哪里放置自定义步骤?(./steps_file.js)
steps_file.js 看起来像这样:
'use strict';
// in this file you can append custom step methods to 'I' object
module.exports = function() {
return actor({
// Define custom steps here, use 'this' to access default methods of I.
// It is recommended to place a general 'login' function here.
});
}
您可以尝试创建此文件或"I": "./steps_file.js"
从您的配置中删除。