mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:39:01 +08:00
14 lines
339 B
JavaScript
14 lines
339 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
defaultCommandTimeout: 30000,
|
|
video: false,
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
return require('./cypress/plugins/index.js')(on, config)
|
|
},
|
|
baseUrl: 'http://localhost:3000',
|
|
specPattern: '../{demos,tests}/**/*.spec.{js,ts}',
|
|
},
|
|
})
|