| 
									
										
										
										
											2017-01-25 19:39:01 +02:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:22:24 -08:00
										 |  |  | set -u -e -o pipefail | 
					
						
							| 
									
										
										
										
											2017-01-25 19:39:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Setup environment | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  | readonly thisDir=$(cd $(dirname $0); pwd) | 
					
						
							|  |  |  | source ${thisDir}/_travis-fold.sh | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # run in subshell to avoid polluting cwd | 
					
						
							|  |  |  | ( | 
					
						
							|  |  |  |   cd ${PROJECT_ROOT}/aio | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Lint the code | 
					
						
							|  |  |  |   travisFoldStart "test.aio.lint" | 
					
						
							| 
									
										
										
										
											2017-04-01 02:24:25 +03:00
										 |  |  |     yarn lint | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  |   travisFoldEnd "test.aio.lint" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Start xvfb for local Chrome used for testing | 
					
						
							|  |  |  |   if [[ ${TRAVIS} ]]; then | 
					
						
							|  |  |  |     travisFoldStart "test.aio.xvfb-start" | 
					
						
							|  |  |  |       sh -e /etc/init.d/xvfb start | 
					
						
							|  |  |  |     travisFoldEnd "test.aio.xvfb-start" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:39:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  |   # Run unit tests | 
					
						
							|  |  |  |   travisFoldStart "test.aio.unit" | 
					
						
							|  |  |  |     yarn test -- --single-run | 
					
						
							|  |  |  |   travisFoldEnd "test.aio.unit" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:39:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  |   # Run e2e tests | 
					
						
							|  |  |  |   travisFoldStart "test.aio.e2e" | 
					
						
							| 
									
										
										
										
											2017-04-01 02:24:25 +03:00
										 |  |  |     yarn e2e | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  |   travisFoldEnd "test.aio.e2e" | 
					
						
							| 
									
										
										
										
											2017-03-02 00:39:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-01 02:24:25 +03:00
										 |  |  |   # Run PWA-score tests | 
					
						
							|  |  |  |   travisFoldStart "test.aio.pwaScore" | 
					
						
							|  |  |  |     yarn test-pwa-score-local | 
					
						
							|  |  |  |   travisFoldEnd "test.aio.pwaScore" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:39:37 +02:00
										 |  |  |   # Run unit tests for aio/aio-builds-setup | 
					
						
							|  |  |  |   travisFoldStart "test.aio.aio-builds-setup" | 
					
						
							| 
									
										
										
										
											2017-03-07 11:36:41 +02:00
										 |  |  |     ./aio-builds-setup/scripts/test.sh | 
					
						
							| 
									
										
										
										
											2017-03-02 00:39:37 +02:00
										 |  |  |   travisFoldEnd "test.aio.aio-builds-setup" | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  | ) |