| 
									
										
										
										
											2016-11-11 01:46:23 +03: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
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-03-02 12:12:46 -08:00
										 |  |  | import {describe, expect, it} from '@angular/core/testing/src/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-11-11 01:46:23 +03:00
										 |  |  | import {HammerGestureConfig, HammerGesturesPlugin} from '@angular/platform-browser/src/dom/events/hammer_gestures'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('HammerGesturesPlugin', () => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should implement addGlobalEventListener', () => { | 
					
						
							| 
									
										
										
										
											2017-02-14 16:14:40 -08:00
										 |  |  |       const plugin = new HammerGesturesPlugin(document, new HammerGestureConfig()); | 
					
						
							| 
									
										
										
										
											2016-11-11 01:46:23 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       spyOn(plugin, 'addEventListener').and.callFake(() => {}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(() => plugin.addGlobalEventListener('document', 'swipe', () => {})).not.toThrowError(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |