We have some Cypress E2E tests running in Github Actions. After a test run, we upload failed tests into artifacts
Unfortunately, the resolution of the video is so low. These are my settings
export default defineConfig({
e2e: {
specPattern: 'cypress/e2e/**/*.feature',
supportFile: 'cypress/support/e2e.ts',
setupNodeEvents,
viewportHeight: 1600,
viewportWidth: 2560,
defaultCommandTimeout: 20_000,
},
projectId: 'gpqaaf',
chromeWebSecurity: false,
reporter: 'mochawesome',
video: true,
videoCompression: 1,
reporterOptions: {
configFile: 'reporter-config.json',
},
retries: {
runMode: 0,
openMode: 0,
},
});
I recently added VideoCompression: 1
and I do not think it made a difference, previously this param did not exist
I’ve added a screenshot of the .mp4 file that I am viewing in VLC to illistrate how bad it is. The text on our actual application is mostly unreadable.
Any suggestions?
3