15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
/* eslint-env node */
|
|
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
defaultCommandTimeout: 6000,
|
|
viewportWidth: 1280,
|
|
viewportHeight:720,
|
|
e2e: {
|
|
baseUrl: "http://localhost:5173",
|
|
specPattern: "cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}",
|
|
},
|
|
includeShadowDom: true,
|
|
env: {}
|
|
});
|