点状报告器
一个 WebdriverIO 插件,用于以点状样式报告。
安装
最简单的方法是将 @wdio/dot-reporter
作为开发依赖项保存在您的 package.json
中,方法是
npm install @wdio/dot-reporter --save-dev
有关如何安装 WebdriverIO
的说明,请参见此处。
配置
以下代码显示了默认的 wdio 测试运行器配置。只需将 'dot'
作为报告器添加到数组中。
// wdio.conf.js
module.exports = {
// ...
reporters: ['dot'],
// ...
};
有关 WebdriverIO 的更多信息,请参见主页。