mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-07 16:44:16 +01:00
12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
const { defineConfig } = require("cypress")
|
|
|
|
module.exports = defineConfig({
|
|
component: {
|
|
devServer: {
|
|
framework: "nuxt",
|
|
bundler: "webpack"
|
|
},
|
|
specPattern: "cypress/tests/**/*.cy.js"
|
|
}
|
|
})
|