Disable Video Recording on Cypress Run

October 31, 2024 ยท cypress, configuration

Code Snippet โ€‹

ts
// cypress.config.ts
import { defineConfig } from 'cypress'

export default defineConfig({
  video: false,
})

Resources โ€‹

Inspiration โ€‹

This is a configuration I tend to forget and have to rely on tracking down the answer. I'm not the biggest fan of the Cypress docs, so I decided to write this up for personal reference and figured some of you might find it helpful too.