mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-10-31 03:53:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			379 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			379 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| # exit script if fails
 | |
| set -e;
 | |
| 
 | |
| 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
 | |
| 
 | |
|     echo 'Travis Screen Resolution:'
 | |
|     xdpyinfo | grep dimensions
 | |
| fi
 | |
| 
 | |
| npm run test
 | |
| 
 | |
| # if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
 | |
| #     npm run test-e2e
 | |
| # fi
 |