| 
									
										
										
										
											2019-02-13 18:07:54 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-02-13 18:07:54 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {global} from '../../src/util/global'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   describe('global', () => { | 
					
						
							|  |  |  |     it('should be global this value', () => { | 
					
						
							|  |  |  |       const _global = new Function('return this')(); | 
					
						
							|  |  |  |       expect(global).toBe(_global); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (typeof globalThis !== 'undefined') { | 
					
						
							| 
									
										
										
										
											2020-04-13 16:40:21 -07:00
										 |  |  |       it('should use globalThis as global reference', () => { | 
					
						
							|  |  |  |         expect(global).toBe(globalThis); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2019-02-13 18:07:54 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |