View | Details | Raw Unified | Return to bug 41362
Collapse All | Expand All

(-)a/cypress.config.ts (-3 / +2 lines)
Lines 18-25 export default defineConfig({ Link Here
18
        supportFile: "t/cypress/support/e2e.js",
18
        supportFile: "t/cypress/support/e2e.js",
19
        env: {
19
        env: {
20
            opacBaseUrl: process.env.KOHA_OPAC_URL || "http://localhost:8080",
20
            opacBaseUrl: process.env.KOHA_OPAC_URL || "http://localhost:8080",
21
            apiUsername: "koha",
21
            apiUsername: process.env.KOHA_USER || "koha",
22
            apiPassword: "koha",
22
            apiPassword: process.env.KOHA_PASS || "koha",
23
        },
23
        },
24
    },
24
    },
25
25
26
- 

Return to bug 41362