aboutsummaryrefslogtreecommitdiffstats
path: root/cypress.config.ts
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2024-06-16 06:16:02 +0000
committerRichard Steinmetz <richard@steinmetz.cloud>2024-06-16 06:22:13 +0000
commitead63a067ec5fdae468981c3150c63bc00bdc819 (patch)
tree1bd14db78a0b299c1df3b6c79f64cc47010970f6 /cypress.config.ts
parent55036a0bc4628bc9e3ce47e26c10fe3f9f6fef56 (diff)
downloadnextcloud-server-ead63a067ec5fdae468981c3150c63bc00bdc819.tar.gz
nextcloud-server-ead63a067ec5fdae468981c3150c63bc00bdc819.zip
test(cypress): don't apply changes in CI
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
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