mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-09 02:41:35 +00:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
component: {
|
|
devServer: {
|
|
framework: 'nuxt',
|
|
bundler: 'vite'
|
|
},
|
|
specPattern: 'cypress/tests/**/*.cy.js'
|
|
}
|
|
})
|