File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const path = require('path');
22const fs = require ( 'fs' ) ;
33const { consoleHolder } = require ( '../testObservability/helper/constants' ) ;
44const HttpsProxyAgent = require ( 'https-proxy-agent' ) ;
5-
5+ const { v4 : uuidv4 } = require ( 'uuid' ) ;
66const axios = require ( 'axios' ) ,
77 logger = require ( './logger' ) . winstonLogger ,
88 utils = require ( './utils' ) ,
@@ -108,7 +108,9 @@ exports.patchCypressConfigFileContent = (bsConfig) => {
108108
109109 let confPath = bsConfig . run_settings . cypress_config_file ;
110110 let patchedConfPathList = confPath . split ( path . sep ) ;
111- patchedConfPathList [ patchedConfPathList . length - 1 ] = 'patched_ats_config_file.js'
111+ const uniqueNamePatchFileName = `patched_ats_config_file_${ uuidv4 ( ) } .js` ;
112+ patchedConfPathList [ patchedConfPathList . length - 1 ] = uniqueNamePatchFileName ;
113+ logger . debug ( "Patch file name is " + uniqueNamePatchFileName ) ;
112114 const patchedConfPath = patchedConfPathList . join ( path . sep ) ;
113115
114116 bsConfig . run_settings . patched_cypress_config_file = patchedConfPath ;
You can’t perform that action at this time.
0 commit comments