mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-28 23:59:25 +08:00
348383b96c
* test: update cypress and migrate configs * test: fix codeBlockLowlight test * test: bump cypress actions
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
defaultCommandTimeout: 15000,
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
return require('./cypress/plugins/index.js')(on, config)
|
|
},
|
|
baseUrl: 'http://localhost:3000',
|
|
specPattern: '../{demos,tests}/**/*.spec.{js,ts}',
|
|
},
|
|
})
|