mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 10:06:32 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const { defineConfig } = require("cypress");
 | |
| const fs = require("fs-extra");
 | |
| const path = require("path");
 | |
| 
 | |
| let globalState;
 | |
| // Fetch from environment variable
 | |
| const connectorId = process.env.CYPRESS_CONNECTOR || "service";
 | |
| const reportName = process.env.REPORT_NAME || `${connectorId}_report`;
 | |
| 
 | |
| module.exports = defineConfig({
 | |
|   e2e: {
 | |
|     setupNodeEvents(on, config) {
 | |
|       require("cypress-mochawesome-reporter/plugin")(on);
 | |
| 
 | |
|       on("task", {
 | |
|         setGlobalState: (val) => {
 | |
|           return (globalState = val || {});
 | |
|         },
 | |
|         getGlobalState: () => {
 | |
|           return globalState || {};
 | |
|         },
 | |
|         cli_log: (message) => {
 | |
|           console.log("Logging console message from task");
 | |
|           console.log(message);
 | |
|           return null;
 | |
|         },
 | |
|       });
 | |
|       on("after:screenshot", async (details) => {
 | |
|         // Full path to the screenshot file
 | |
|         const screenshotPath = details.path;
 | |
| 
 | |
|         // Extract filename without extension
 | |
|         const name = path.basename(
 | |
|           screenshotPath,
 | |
|           path.extname(screenshotPath)
 | |
|         );
 | |
| 
 | |
|         // Define a new name with a connectorId
 | |
|         const newName = `[${connectorId}] ${name}.png`;
 | |
|         const newPath = path.join(path.dirname(screenshotPath), newName);
 | |
| 
 | |
|         try {
 | |
|           await fs.rename(screenshotPath, newPath);
 | |
|           console.log("Screenshot renamed successfully");
 | |
|           return { path: newPath };
 | |
|         } catch (err) {
 | |
|           console.error("Failed to rename screenshot:", err);
 | |
|         }
 | |
|       });
 | |
|     },
 | |
|     experimentalRunAllSpecs: true,
 | |
| 
 | |
|     reporter: "cypress-mochawesome-reporter",
 | |
|     reporterOptions: {
 | |
|       reportDir: "cypress/reports",
 | |
|       reportFilename: reportName,
 | |
|       reportPageTitle: `[${connectorId}] Cypress test report`,
 | |
|       embeddedScreenshots: true,
 | |
|       overwrite: false,
 | |
|       inlineAssets: true,
 | |
|       saveJson: true,
 | |
|     },
 | |
|   },
 | |
|   chromeWebSecurity: false,
 | |
|   defaultCommandTimeout: 10000,
 | |
|   pageLoadTimeout: 20000,
 | |
| });
 | 
