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

(-)a/cypress.config.ts (-1 / +9 lines)
Lines 8-16 export default defineConfig({ Link Here
8
8
9
    e2e: {
9
    e2e: {
10
        experimentalStudio: true,
10
        experimentalStudio: true,
11
        baseUrl: "http://localhost:8081",
11
        baseUrl: "http://kohadev-intra.mydnsname.org:8081",
12
        specPattern: "t/cypress/integration/**/*.*",
12
        specPattern: "t/cypress/integration/**/*.*",
13
        supportFile: "t/cypress/support/e2e.js",
13
        supportFile: "t/cypress/support/e2e.js",
14
        env: {
15
            db: {
16
                host: "db",
17
                user: "koha_kohadev",
18
                password: "password",
19
                database: "koha_kohadev",
20
            },
21
        },
14
    },
22
    },
15
23
16
    component: {
24
    component: {
(-)a/t/cypress/plugins/index.js (+6 lines)
Lines 11-13 module.exports = (on, config) => { Link Here
11
11
12
  return config
12
  return config
13
}
13
}
14
15
const mysql = require('cypress-mysql');
16
17
module.exports = (on, config) => {
18
  mysql.configurePlugin(on);
19
}
(-)a/t/cypress/support/e2e.js (-1 / +3 lines)
Lines 129-131 cy.get_vendors_to_relate = () => { Link Here
129
        }
129
        }
130
    ]
130
    ]
131
}
131
}
132
- 
132
133
const mysql = require('cypress-mysql');
134
mysql.addCommands();

Return to bug 34478