REPORT_DIR
The REPORT_DIR
specifies where the generated JSON report lives. It's relative to the ROOT_DIR.
💢 Default value: cypress-image-diff-html-report
// cypress-image-diff.config.js
const config = {
ROOT_DIR: 'visual-test/custom-folder-name',
REPORT_DIR: 'html-report',
};
module.exports = config;
Output directory:
.
├── visual-test
├── custom-folder-name
├── html-report
Last updated