mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-01 20:44:12 +00:00
16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
|
|
baseUrl: 'http://localhost:9000'
|
|
},
|
|
component: {
|
|
specPattern: 'src/**/__tests__/*.{cy,spec}.{js,ts,jsx,tsx}',
|
|
devServer: {
|
|
framework: 'vue',
|
|
bundler: 'vite'
|
|
}
|
|
}
|
|
})
|