mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			13 lines
		
	
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | test("normal mode", () => { | ||
|  |     expect(() => { | ||
|  |         NaN = 5; // NaN is a non-writable global variable
 | ||
|  |     }).not.toThrow(); | ||
|  | }); | ||
|  | 
 | ||
|  | test("strict mode", () => { | ||
|  |     expect(() => { | ||
|  |         "use strict"; | ||
|  |         NaN = 5; // NaN is a non-writable global variable
 | ||
|  |     }).toThrowWithMessage(TypeError, "Cannot write to non-writable property 'NaN'"); | ||
|  | }); |