Stanislav Rogozhin
Stanislav Rogozhin
I'm trying to run mocha tests in parallel and write output in allure format. However test duration is not recorded correctly in allure results. Simple test: wait for 1s, then...
Can only see this problem in the latest 2.2.1 version. Sample test ``` const chai = require('chai'); const expect = chai.expect; describe('Suite', function() { it('Test pass', function() { expect(true).to.be.true; });...
[Allure Screen Diff Plugin](https://github.com/allure-framework/allure2/blob/master/plugins/screen-diff-plugin/README.md) expects screenshots to be named exactly "actual", "expected" and "diff". codeceptjs-resemblehelper names screenshots "Base Image", "Screenshot Image" and "Diff Image" Is there some way to make...