@@ -13,9 +13,9 @@ import { SetupPage } from '../../support/sections/SetupPage.ts'
1313/**
1414 * Installation-wizard tests. They repeatedly UN-INSTALL the shared server (so it
1515 * can be set up again from scratch) and the non-SQLite cases need reachable
16- * database containers, so they run only in the dedicated setup job — gated on
17- * PLAYWRIGHT_SETUP and isolated in the `setup` Playwright project (see
18- * playwright.config.ts). They are tagged `@setup` for selective runs.
16+ * database containers, so they run only in the dedicated setup job —
17+ * isolated in the `setup` Playwright project.
18+ * They are tagged `@setup` for selective runs.
1919 */
2020const test = base . extend < { setupPage : SetupPage } > ( {
2121 setupPage : async ( { page } , use ) => {
@@ -42,8 +42,8 @@ const RECOMMENDED_APP_COUNT = APPSTORE_APPS.ocs.data.length
4242const ENABLE_SUCCESS = { ocs : { meta : { status : 'ok' , statuscode : 200 , message : 'OK' } , data : { update_required : false } } }
4343const ENABLE_FAILURE = { ocs : { meta : { status : 'failure' , statuscode : 500 , message : 'Forced failure' } , data : [ ] } }
4444
45- const MYSQL : DatabaseConnection = { user : 'oc_autotest ' , password : 'nextcloud ' , name : 'oc_autotest ' , host : 'mysql:3306' }
46- const MARIADB : DatabaseConnection = { user : 'oc_autotest ' , password : 'nextcloud ' , name : 'oc_autotest ' , host : 'mariadb:3306' }
45+ const MYSQL : DatabaseConnection = { user : 'root ' , password : 'rootpassword ' , name : 'nextcloud ' , host : 'mysql:3306' }
46+ const MARIADB : DatabaseConnection = { user : 'root ' , password : 'rootpassword ' , name : 'nextcloud ' , host : 'mariadb:3306' }
4747const POSTGRES : DatabaseConnection = { user : 'root' , password : 'rootpassword' , name : 'nextcloud' , host : 'postgres:5432' }
4848const ORACLE : DatabaseConnection = { user : 'system' , password : 'oracle' , name : 'FREE' , host : 'oracle:1521' }
4949
0 commit comments