44 lines
		
	
	
		
			795 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			795 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -ex -o pipefail
 | 
						|
 | 
						|
if [[ ${TRAVIS} && ${CI_MODE} != "e2e" ]]; then
 | 
						|
  exit 0;
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
echo 'travis_fold:start:test.js'
 | 
						|
 | 
						|
# Setup environment
 | 
						|
cd `dirname $0`
 | 
						|
source ./env.sh
 | 
						|
cd ../..
 | 
						|
 | 
						|
 | 
						|
echo 'travis_fold:start:test.buildPackages'
 | 
						|
 | 
						|
./build.sh
 | 
						|
 | 
						|
echo 'travis_fold:end:test.buildPackages'
 | 
						|
 | 
						|
 | 
						|
./scripts/ci-lite/offline_compiler_test.sh
 | 
						|
./tools/typings-test/test.sh
 | 
						|
$(npm bin)/gulp public-api:enforce
 | 
						|
 | 
						|
echo 'travis_fold:start:test.e2e.localChrome'
 | 
						|
cd dist/
 | 
						|
$(npm bin)/gulp serve &
 | 
						|
cd ..
 | 
						|
if [[ ${TRAVIS} ]]; then
 | 
						|
  sh -e /etc/init.d/xvfb start
 | 
						|
fi
 | 
						|
NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-js-new-world.conf.js
 | 
						|
echo 'travis_fold:end:test.e2e.localChrome'
 | 
						|
 | 
						|
echo 'travis_fold:end:test.js'
 | 
						|
 | 
						|
if [[ ${TRAVIS} ]]; then
 | 
						|
  ./scripts/publish/publish-build-artifacts.sh
 | 
						|
fi
 |