12345678910111213141516 |
- import { defineConfig } from 'cypress'
- import installLogsPrinter from 'cypress-terminal-report/src/installLogsPrinter.js'
- export default defineConfig({
- defaultCommandTimeout: 16000,
- e2e: {
- baseUrl: 'http://localhost:1234',
- specPattern: 'cypress/integration/*.spec.ts',
- setupNodeEvents (on) {
- // implement node event listeners here
- installLogsPrinter(on)
- },
- },
- })
|