mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-28 18:24:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			316 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			316 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2024 Jordan Harband.  All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| esid: sec-error.iserror
 | |
| description: >
 | |
|   The initial value of Error.isError.name is "isError".
 | |
| features: [Error.isError]
 | |
| ---*/
 | |
| 
 | |
| assert.sameValue(Error.isError.name, 'isError');
 | |
| 
 |