mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 15:48:39 +08:00 
			
		
		
		
	Prevent commands from executing during tests (#21)
* Prevent commands from executing during tests * Add newline at end of file * Drop all commands from output
This commit is contained in:
		
							parent
							
								
									d676b6c354
								
							
						
					
					
						commit
						526c940a94
					
				| 
						 | 
					@ -9,3 +9,12 @@ module.exports = {
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  verbose: true
 | 
					  verbose: true
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const processStdoutWrite = process.stdout.write.bind(process.stdout)
 | 
				
			||||||
 | 
					process.stdout.write = (str, encoding, cb) => {
 | 
				
			||||||
 | 
					  // Core library will directly call process.stdout.write for commands
 | 
				
			||||||
 | 
					  // We don't want :: commands to be executed by the runner during tests
 | 
				
			||||||
 | 
					  if (!str.match(/^::/)) {
 | 
				
			||||||
 | 
					    return processStdoutWrite(str, encoding, cb);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user