no-record-video-test-passed-cypress-plugin
Version:
Plugin delete the recorded video for specs that had no retry attempts or failures when using Cypress test retries.
17 lines (15 loc) • 336 B
JavaScript
const { defineConfig } = require("cypress");
const { noRecordVideoTestPassed } = require("./src/index");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
noRecordVideoTestPassed(on, config);
},
supportFile: false,
},
env: {
noRecordVideoTestPassed: {
enable: true,
},
},
});