tiptap/tests/cypress.config.js
Sven Adlung 348383b96c
fix(tests): fix failing cypress tests and update cypress
* test: update cypress and migrate configs

* test: fix codeBlockLowlight test

* test: bump cypress actions
2022-09-26 11:06:01 +02:00

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}',
},
})