mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	This patch starts introduces `npx playwright install chrome-beta` command and switches our Chrome Beta tests to it.
		
			
				
	
	
		
			11 lines
		
	
	
		
			416 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			416 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -e
 | 
						|
set -x
 | 
						|
 | 
						|
rm -rf "/Applications/Google Chrome Beta.app"
 | 
						|
cd /tmp
 | 
						|
curl -o ./googlechromebeta.dmg -k https://dl.google.com/chrome/mac/beta/googlechromebeta.dmg
 | 
						|
hdiutil attach -nobrowse -quiet -noautofsck -noautoopen -mountpoint /Volumes/googlechromebeta.dmg ./googlechromebeta.dmg
 | 
						|
cp -rf "/Volumes/googlechromebeta.dmg/Google Chrome Beta.app" /Applications
 | 
						|
hdiutil detach /Volumes/googlechromebeta.dmg
 |