mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			209 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			209 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | 'use strict'; | ||
|  | 
 | ||
|  | class ResizeObserverMock { | ||
|  |   constructor() { | ||
|  |     this.disconnect = () => null; | ||
|  |     this.observe = () => null; | ||
|  |     this.unobserve = () => null; | ||
|  |   } | ||
|  | } | ||
|  | 
 | ||
|  | global.ResizeObserver = ResizeObserverMock; |