From 0aa2b23a943ce8d9f62987ccba5df2542fdef228 Mon Sep 17 00:00:00 2001 From: mschuepbach Date: Sat, 23 Jul 2022 18:11:39 +0200 Subject: [PATCH] Turn off screenshots and videos --- cypress.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress.config.js b/cypress.config.js index 0473051..4df724e 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -3,5 +3,7 @@ const { defineConfig } = require("cypress"); module.exports = defineConfig({ e2e: { baseUrl: "http://localhost:8080/", + screenshotOnRunFailure: false, + video: false, }, });