Chimp.js 配置
Chimp.js configuration
我正在使用 Chimp.js(with Cucumber.js),所有测试都需要通过登录页面。
我知道 webdriverIO 将 testrunner 配置文件用于 .before()
和 .after()
.
之类的东西
使用 Chimp 实现该目标的最佳方法是什么?
谢谢!
您可以将 Cucumber.js before and after hooks 与 Chimp 一起使用:
// tests/features/clearDatabase.js
var clearDatabase = function() {
this.Before(function() {
server.call('/fixtures/clearDatabase');
});
};
module.exports = clearDatabase;
我正在使用 Chimp.js(with Cucumber.js),所有测试都需要通过登录页面。
我知道 webdriverIO 将 testrunner 配置文件用于 .before()
和 .after()
.
使用 Chimp 实现该目标的最佳方法是什么?
谢谢!
您可以将 Cucumber.js before and after hooks 与 Chimp 一起使用:
// tests/features/clearDatabase.js
var clearDatabase = function() {
this.Before(function() {
server.call('/fixtures/clearDatabase');
});
};
module.exports = clearDatabase;