mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-30 03:03:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			440 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			440 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2015 Microsoft Corporation. All rights reserved.
 | |
| // This code is governed by the license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| description: >
 | |
|   test Object.Assign(target,...sources),only one argument was passed,
 | |
|   return ToObject(target)
 | |
| es6id:  19.1.2.1.3
 | |
| ---*/
 | |
| 
 | |
| var target = "a";
 | |
| var result = Object.assign(target);
 | |
| 
 | |
| assert.sameValue(typeof result, "object");
 | |
| assert.sameValue(result.valueOf(), "a", "The value should be 'a'.");
 |