Why does Cypress test video show a blue screen post-completion intermittently?

Why does Cypress test video show a blue screen post-completion intermittently?

Hey Junior

This issue is usually observed when Cypress doesn’t at the end of the test execution while recording the test video. To bypass this error, you can disable Cypress video recording capability in Cypress.config.js and it will resolve the issue.

You can use the following syntax:

import { defineConfig } from 'cypress'

export default defineConfig({
    e2e: {
        setupNodeEvents(on, config) {
            // implement node event listeners here
        },
    },
    video: false,
})