mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 17:13:04 +08:00
21 lines
632 B
JavaScript
Vendored
21 lines
632 B
JavaScript
Vendored
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
env: {
|
|
apiUrl: 'http://localhost:9000',
|
|
serverInitCmd:
|
|
'pkill -9 listmonk | cd ../ && ./listmonk --install --yes && ./listmonk > /dev/null 2>/dev/null &',
|
|
username: 'listmonk',
|
|
password: 'listmonk',
|
|
},
|
|
viewportWidth: 1300,
|
|
viewportHeight: 950,
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents(on, config) {
|
|
return require('./cypress/plugins/index.js')(on, config)
|
|
},
|
|
baseUrl: 'http://localhost:9000/admin',
|
|
},
|
|
})
|