| 
									
										
										
										
											2018-02-03 20:34:30 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-27 13:49:22 -07:00
										 |  |  | import {withBody} from '@angular/private/testing'; | 
					
						
							| 
									
										
										
										
											2018-02-03 20:34:30 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | describe('testing', () => { | 
					
						
							|  |  |  |   describe('withBody', () => { | 
					
						
							|  |  |  |     let passed: boolean; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => passed = false); | 
					
						
							|  |  |  |     afterEach(() => expect(passed).toEqual(true)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should set up body', withBody('<span>works!</span>', () => { | 
					
						
							|  |  |  |          expect(document.body.innerHTML).toEqual('<span>works!</span>'); | 
					
						
							|  |  |  |          passed = true; | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should support promises', withBody('<span>works!</span>', () => { | 
					
						
							|  |  |  |          return Promise.resolve(true).then(() => passed = true); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should support async and await', withBody('<span>works!</span>', async() => { | 
					
						
							|  |  |  |          await Promise.resolve(true); | 
					
						
							|  |  |  |          passed = true; | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('domino', () => { | 
					
						
							|  |  |  |     it('should have document present', () => { | 
					
						
							|  |  |  |       // In Browser this tests passes, bun we also want to make sure we pass in node.js
 | 
					
						
							|  |  |  |       // We expect that node.js will load domino for us.
 | 
					
						
							|  |  |  |       expect(document).toBeTruthy(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('requestAnimationFrame', () => { | 
					
						
							|  |  |  |     it('should have requestAnimationFrame', (done) => { | 
					
						
							|  |  |  |       // In Browser we have requestAnimationFrame, but verify that we also have it node.js
 | 
					
						
							|  |  |  |       requestAnimationFrame(done); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); |