salix-front/cypress.config.js

66 lines
2.7 KiB
JavaScript
Raw Normal View History

2025-01-22 09:57:59 +00:00
import { defineConfig } from 'cypress';
// import vitePreprocessor from 'cypress-vite';
2024-11-24 15:41:21 +00:00
// https://docs.cypress.io/app/tooling/reporters
// https://docs.cypress.io/app/references/configuration
// https://www.npmjs.com/package/cypress-mochawesome-reporter
2022-12-20 13:59:53 +00:00
// const baseUrl = `http://${process.env.NETWORK ? 'front' : 'localhost'}:9000`;
const baseUrl = `http://front:9000`;
console.log('process.env.NETWORK: ', process.env.NETWORK);
2025-01-22 09:57:59 +00:00
export default defineConfig({
2022-12-21 08:19:29 +00:00
e2e: {
baseUrl,
experimentalStudio: false, // Desactivado para evitar tiempos de espera innecesarios
defaultCommandTimeout: 10000,
requestTimeout: 10000,
responseTimeout: 30000,
pageLoadTimeout: 60000,
2023-01-03 13:17:22 +00:00
fixturesFolder: 'test/cypress/fixtures',
screenshotsFolder: 'test/cypress/screenshots',
supportFile: 'test/cypress/support/index.js',
videosFolder: 'test/cypress/videos',
downloadsFolder: 'test/cypress/downloads',
video: false,
specPattern: [
2025-02-10 06:50:06 +00:00
'test/cypress/integration/entry/stockBought.spec.js',
'test/cypress/integration/invoiceOut/invoiceOutNegativeBases.js',
'test/cypress/integration/invoiceOut/invoiceOutMakeInvoice.spec.js',
'test/cypress/integration/item/itemTag.spec.js',
// 'test/cypress/integration/route/routeList.spec.js',
// 'test/cypress/integration/ticket/ticketList.spec.js',
// 'test/cypress/integration/ticket/ticketSale.spec.js',
// 'test/cypress/integration/vnComponent/UserPanel.spec.js',
// 'test/cypress/integration/vnComponent/VnLocation.spec.js',
// 'test/cypress/integration/worker/workerNotificationsManager.spec.js',
],
2023-01-03 13:17:22 +00:00
experimentalRunAllSpecs: true,
watchForFileChanges: true,
2024-10-29 13:27:24 +00:00
reporter: 'cypress-mochawesome-reporter',
reporterOptions: {
charts: true,
reportPageTitle: 'Cypress Inline Reporter',
2024-11-24 15:41:21 +00:00
reportFilename: '[status]_[datetime]-report',
2024-10-29 13:27:24 +00:00
embeddedScreenshots: true,
reportDir: 'test/cypress/reports',
inlineAssets: true,
},
2022-12-21 08:19:29 +00:00
component: {
componentFolder: 'src',
testFiles: '**/*.spec.js',
2023-01-03 13:17:22 +00:00
supportFile: 'test/cypress/support/unit.js',
2022-12-21 08:19:29 +00:00
},
setupNodeEvents: async (on, config) => {
// on('file:preprocessor', vitePreprocessor());
const plugin = await import('cypress-mochawesome-reporter/plugin');
plugin.default(on);
return config;
2022-12-21 08:19:29 +00:00
},
2025-01-21 09:48:04 +00:00
viewportWidth: 1280,
viewportHeight: 720,
2022-12-20 13:59:53 +00:00
},
2025-02-05 06:15:10 +00:00
experimentalMemoryManagement: true,
defaultCommandTimeout: 10000,
numTestsKeptInMemory: 1000,
2022-12-20 13:59:53 +00:00
});