| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:22:24 -08:00
										 |  |  | set -u -e -o pipefail | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Setup environment | 
					
						
							| 
									
										
										
										
											2017-03-05 01:49:10 -08:00
										 |  |  | readonly thisDir=$(cd $(dirname $0); pwd) | 
					
						
							|  |  |  | source ${thisDir}/_travis-fold.sh | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:22:24 -08:00
										 |  |  | travisFoldStart "test.e2e.buildPackages" | 
					
						
							|  |  |  |   ./build.sh | 
					
						
							|  |  |  | travisFoldEnd "test.e2e.buildPackages" | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:22:24 -08:00
										 |  |  | travisFoldStart "test.e2e.check-cycle" | 
					
						
							|  |  |  |   $(npm bin)/gulp check-cycle | 
					
						
							|  |  |  | travisFoldEnd "test.e2e.check-cycle" | 
					
						
							| 
									
										
										
										
											2016-05-11 17:15:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-02 00:22:24 -08:00
										 |  |  | # Serve files for e2e tests | 
					
						
							|  |  |  | ( | 
					
						
							|  |  |  |   $(npm bin)/gulp serve & | 
					
						
							|  |  |  |   $(npm bin)/gulp serve-examples & | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | travisFoldStart "test.e2e.protractor-e2e" | 
					
						
							|  |  |  |   NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-e2e.conf.js --bundles=true | 
					
						
							|  |  |  | travisFoldEnd "test.e2e.protractor-e2e" | 
					
						
							|  |  |  | travisFoldStart "test.e2e.protractor-examples-e2e" | 
					
						
							|  |  |  |   NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-examples-e2e.conf.js --bundles=true | 
					
						
							|  |  |  | travisFoldEnd "test.e2e.protractor-examples-e2e" | 
					
						
							|  |  |  | travisFoldStart "test.e2e.protractor-perf" | 
					
						
							|  |  |  |   NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-perf.conf.js --bundles=true --dryrun | 
					
						
							|  |  |  | travisFoldEnd "test.e2e.protractor-perf" | 
					
						
							| 
									
										
										
										
											2018-04-13 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | # TODO(i): temporarily disable this test because we don't have rxjs backwards compatibility package | 
					
						
							|  |  |  | #   and cdk+material are not yet compatible with rxjs v6 | 
					
						
							|  |  |  | #   uncomment when we have cdk and material releases compatible with rxjs v6 | 
					
						
							|  |  |  | #travisFoldStart "test.e2e.offlineCompiler" | 
					
						
							|  |  |  | #  #TODO(alexeagle): move offline_compiler_test to integration/ | 
					
						
							|  |  |  | #  ${thisDir}/offline_compiler_test.sh | 
					
						
							|  |  |  | #travisFoldEnd "test.e2e.offlineCompiler" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | travisFoldStart "test.e2e.source-maps" | 
					
						
							|  |  |  |   ./node_modules/.bin/gulp source-map-test | 
					
						
							|  |  |  | travisFoldEnd "test.e2e.source-maps" |