etherpad-lite/src/tests/frontend/cypress/cypress.config.js

10 lines
217 B
JavaScript
Raw Normal View History

2022-09-24 16:16:31 +02:00
const { defineConfig } = require('cypress')
module.exports = defineConfig({
e2e: {
baseUrl: "http://127.0.0.1:9001",
supportFile: false,
2024-01-20 20:34:27 +01:00
specPattern: 'tests/frontend/cypress/integration/**/*.js'
2022-09-24 16:16:31 +02:00
}
})