mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			231 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			231 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| test("constructor properties", () => {
 | |
|   expect(String).toHaveLength(1);
 | |
|   expect(String.name).toBe("String");
 | |
| });
 | |
| 
 | |
| test("typeof", () => {
 | |
|   expect(typeof String()).toBe("string");
 | |
|   expect(typeof new String()).toBe("object");
 | |
| });
 | 
