audiobookshelf/client/cypress.config.js

12 lines
217 B
JavaScript
Raw Normal View History

2024-04-29 23:30:30 +02:00
const { defineConfig } = require("cypress")
2024-04-15 22:57:21 +02:00
module.exports = defineConfig({
component: {
devServer: {
framework: "nuxt",
2024-04-29 23:30:30 +02:00
bundler: "webpack"
},
specPattern: "cypress/tests/**/*.cy.js"
2024-04-29 23:30:30 +02:00
}
})