aboutsummaryrefslogtreecommitdiffstats
path: root/cypress.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cypress.config.ts')
-rw-r--r--cypress.config.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/cypress.config.ts b/cypress.config.ts
index d4896fd8d02..2c91c6256d5 100644
--- a/cypress.config.ts
+++ b/cypress.config.ts
@@ -94,7 +94,10 @@ export default defineConfig({
config.baseUrl = `http://${ip}/index.php`
await waitOnNextcloud(ip)
await configureNextcloud()
- await applyChangesToNextcloud()
+
+ if (!process.env.CI) {
+ await applyChangesToNextcloud()
+ }
// IMPORTANT: return the config otherwise cypress-split will not work
return config