File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11const config = {
22 // environment
3- baseOcisUrl : process . env . OCIS_URL || 'https://localhost:9200' ,
3+ baseUrl : process . env . OC_URL || 'https://localhost:9200' ,
44 assets : './tests/e2e/filesForUpload' ,
55 adminUser : process . env . ADMIN_USERNAME || 'admin' ,
66 adminPassword : process . env . ADMIN_PASSWORD || 'admin' ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const config = require('../config')
22
33class Ocis {
44 constructor ( ) {
5- this . signInPageUrl = config . baseOcisUrl
5+ this . signInPageUrl = config . baseUrl
66 this . homePageSelector = '.oc-login-bg'
77 this . loginFormSelector = '.oc-login-form'
88 this . usernameInputFieldSelector = '#oc-login-username'
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const getAuthHeaders = (user) => {
3030}
3131
3232const getWebDavUrl = ( user , fileName ) => {
33- return `${ config . baseOcisUrl } /dav/files/${ user } /${ fileName } `
33+ return `${ config . baseUrl } /dav/files/${ user } /${ fileName } `
3434}
3535
3636module . exports = {
You can’t perform that action at this time.
0 commit comments