mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-10-28 18:43:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			196 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			196 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
 | |
|   export {no_proxy,NO_PROXY}="127.0.0.1,localhost"
 | |
| 	export DISPLAY=:99.0
 | |
|   sh -e /etc/init.d/xvfb start
 | |
|   sleep 3
 | |
| fi
 | |
| 
 | |
| npm run test
 |