mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-08 08:01:02 -04:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: "http://127.0.0.1:9001",
|
|
supportFile: false,
|
|
specPattern: 'tests/frontend/cypress/integration/**/*.js'
|
|
}
|
|
})
|