tiptap/tests/cypress.config.js

14 lines
339 B
JavaScript
Raw Normal View History

const { defineConfig } = require('cypress')
module.exports = defineConfig({
2023-03-03 20:00:14 +08:00
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}',
},
})