在 运行 示例量角器性能 conf.js 之后无法弄清楚指标的显示或存储位置

Unable to figure out where the metrics are shown or stored after running sample protractor-perf conf.js

我是量角器性能的新手。我已经安装它并尝试执行以下示例 conf.js 和 example.js

conf.js :- https://github.com/axemclion/protractor-perf/blob/master/test/conf.js

example.js :- https://github.com/axemclion/protractor-perf/blob/master/test/example.spec.js

当我 运行 protractor-perf conf.js。它 运行 没问题,我在命令提示符中看到它通过了。但是我如何以及在何处查看指标??

为了查看指标,我们需要运行以下代码行,它将在控制台上记录指标:

if (perfRunner.isEnabled) {  
    expect(perfRunner.getStats('meanFrameTime')).toBeLessThan(60);
    perfRunner.getStats().then(console.log.bind(console)); // logs the Metrics
}