mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	Switch the LibJS test suite to use the native assert implementation surfaced inside the js repl when it's launched in test mode.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
try {
 | 
						|
    var names = Object.getOwnPropertyNames([1, 2, 3]);
 | 
						|
 | 
						|
    assert(names.length === 4);
 | 
						|
    assert(names[0] === '0');
 | 
						|
    assert(names[1] === '1');
 | 
						|
    assert(names[2] === '2');
 | 
						|
    assert(names[3] === 'length');
 | 
						|
 | 
						|
    console.log("PASS");
 | 
						|
} catch (e) {
 | 
						|
    console.log("FAIL: " + e);
 | 
						|
}
 |