2025-01-22 09:57:59 +00:00
|
|
|
import { defineConfig } from 'cypress';
|
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
|
2025-02-21 10:18:27 +00:00
|
|
|
|
|
|
|
let urlHost,
|
|
|
|
browser,
|
|
|
|
reporter,
|
|
|
|
reporterOptions;
|
|
|
|
|
|
|
|
if (process.env.CI) {
|
|
|
|
urlHost = 'front';
|
|
|
|
browser = 'chromium';
|
|
|
|
reporter = 'junit';
|
|
|
|
reporterOptions = {
|
|
|
|
mochaFile: 'e2e-junitresults.xml,toConsole=true',
|
|
|
|
toConsole: true,
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
urlHost = 'localhost';
|
|
|
|
reporter = 'cypress-mochawesome-reporter';
|
|
|
|
reporterOptions = {
|
|
|
|
charts: true,
|
|
|
|
reportPageTitle: 'Cypress Inline Reporter',
|
|
|
|
reportFilename: '[status]_[datetime]-report',
|
|
|
|
embeddedScreenshots: true,
|
|
|
|
reportDir: 'test/cypress/reports',
|
|
|
|
inlineAssets: true,
|
|
|
|
};
|
|
|
|
}
|
2022-12-20 13:59:53 +00:00
|
|
|
|
2025-01-22 09:57:59 +00:00
|
|
|
export default defineConfig({
|
2022-12-21 08:19:29 +00:00
|
|
|
e2e: {
|
2025-02-21 10:18:27 +00:00
|
|
|
baseUrl: `http://${urlHost}:9000`,
|
2025-02-03 08:13:18 +00:00
|
|
|
experimentalStudio: false, // Desactivado para evitar tiempos de espera innecesarios
|
|
|
|
defaultCommandTimeout: 10000,
|
2025-02-17 13:18:57 +00:00
|
|
|
trashAssetsBeforeRuns: false,
|
2025-02-03 08:13:18 +00:00
|
|
|
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',
|
2025-02-18 13:20:31 +00:00
|
|
|
downloadsFolder: 'test/cypress/downloads',
|
2023-09-25 10:06:49 +00:00
|
|
|
video: false,
|
2025-02-19 09:19:41 +00:00
|
|
|
specPattern: 'test/cypress/integration/**/*.spec.js',
|
2025-02-10 14:06:14 +00:00
|
|
|
experimentalRunAllSpecs: true,
|
2024-10-29 13:25:34 +00:00
|
|
|
watchForFileChanges: true,
|
2025-02-21 10:18:27 +00:00
|
|
|
reporter,
|
|
|
|
reporterOptions,
|
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',
|
2025-02-21 10:36:02 +00:00
|
|
|
},/*
|
2025-01-29 06:35:04 +00:00
|
|
|
setupNodeEvents: async (on, config) => {
|
2025-02-18 09:44:51 +00:00
|
|
|
const plugin = await import('cypress-mochawesome-reporter/plugin');
|
|
|
|
plugin.default(on);
|
2025-02-19 11:39:30 +00:00
|
|
|
const fs = await import('fs');
|
|
|
|
on('task', {
|
|
|
|
deleteFile(filePath) {
|
|
|
|
if (fs.existsSync(filePath)) {
|
|
|
|
fs.unlinkSync(filePath);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2025-01-29 06:35:04 +00:00
|
|
|
return config;
|
2025-02-21 10:36:02 +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,
|
2025-02-19 12:09:36 +00:00
|
|
|
numTestsKeptInMemory: 2,
|
2022-12-20 13:59:53 +00:00
|
|
|
});
|