File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55import { defineConfig } from 'cypress'
66
77export default defineConfig ( {
8- collaboraUrl : 'https://localhost:9980/' ,
8+ env : {
9+ collaboraUrl : process . env . CYPRESS_collaboraUrl ?? 'https://localhost:9980/' ,
10+ } ,
911 projectId : 'fef71b' ,
1012 viewportWidth : 1280 ,
1113 viewportHeight : 720 ,
1214 chromeWebSecurity : false ,
1315 modifyObstructiveCode : false ,
14- allowCypressEnv : false ,
1516 e2e : {
1617 // We've imported your old cypress plugins here.
1718 // You may want to clean this up later by importing these.
Original file line number Diff line number Diff line change 55import { User } from '@nextcloud/e2e-test-server/cypress'
66
77const usesHttps = Cypress . config ( 'baseUrl' ) . startsWith ( 'https' )
8- const collaboraUrl = Cypress . config ( 'collaboraUrl' )
8+ const collaboraUrl = Cypress . env ( 'collaboraUrl' )
99const defaultFonts = [ 'AmaticSC-Regular.ttf' ]
1010
1111describe ( 'Office admin settings' , function ( ) {
You can’t perform that action at this time.
0 commit comments