| 
									
										
										
										
											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" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 12:22:57 +03:00
										 |  |  |   # Run PWA-score tests | 
					
						
							|  |  |  |   # (Run before unit and e2e tests, which destroy the `dist/` directory.) | 
					
						
							|  |  |  |   travisFoldStart "test.aio.pwaScore" | 
					
						
							|  |  |  |     yarn test-pwa-score-localhost | 
					
						
							|  |  |  |   travisFoldEnd "test.aio.pwaScore" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  |   # Run unit tests | 
					
						
							|  |  |  |   travisFoldStart "test.aio.unit" | 
					
						
							| 
									
										
										
										
											2017-09-23 17:25:11 +03:00
										 |  |  |     yarn test --single-run | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  |   travisFoldEnd "test.aio.unit" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:39:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-15 13:30:39 +02:00
										 |  |  |   # Run e2e tests | 
					
						
							|  |  |  |   travisFoldStart "test.aio.e2e" | 
					
						
							| 
									
										
										
										
											2018-01-11 15:40:27 +02:00
										 |  |  |     # Use `production` mode to catch issues introduced by build optimizations. | 
					
						
							|  |  |  |     yarn e2e-prod | 
					
						
							| 
									
										
										
										
											2017-11-15 13:30:39 +02:00
										 |  |  |   travisFoldEnd "test.aio.e2e" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-25 10:13:30 +00:00
										 |  |  |   # Test Firebase redirects | 
					
						
							|  |  |  |   travisFoldStart "test.aio.deployment-config" | 
					
						
							|  |  |  |     yarn deployment-config-test | 
					
						
							|  |  |  |   travisFoldEnd "test.aio.deployment-config" | 
					
						
							| 
									
										
										
										
											2017-11-15 13:30:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | ) |