14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
|
|
baseUrl: 'http://localhost:5173',
|
|
supportFile: false,
|
|
video: false,
|
|
screenshotOnRunFailure: false,
|
|
e2e: {
|
|
// We've imported your old cypress/plugins/index.js file that was previously here
|
|
},
|
|
},
|
|
}); |