mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
	
		
			256 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
	
		
			256 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | test("basic functionality", () => { | ||
|  |     expect(Math.tanh).toHaveLength(1); | ||
|  | 
 | ||
|  |     expect(Math.tanh(0)).toBe(0); | ||
|  |     expect(Math.tanh(Infinity)).toBe(1); | ||
|  |     expect(Math.tanh(-Infinity)).toBe(-1); | ||
|  |     expect(Math.tanh(1)).toBeCloseTo(0.7615941559557649); | ||
|  | }); |