mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
	
		
			184 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
	
		
			184 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | test("basic functionality", () => { | ||
|  |     let a = 5; | ||
|  |     expect(delete a).toBeTrue(); | ||
|  | 
 | ||
|  |     expect(() => { | ||
|  |         a; | ||
|  |     }).toThrowWithMessage(ReferenceError, "'a' is not defined"); | ||
|  | }); |