mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	 d74ad81402
			
		
	
	
		d74ad81402
		
	
	
	
	
		
			
			The addition of assert functions to Userland/js was done before we had load(..) implemented. Now that it exists, it seems like the right move the test helper functions to pure javascript instead of poluting js with random global functions.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			398 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			398 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| load("test-common.js");
 | |
| 
 | |
| try {
 | |
|     var a = [1, 2, 3];
 | |
| 
 | |
|     assert(typeof a === "object");
 | |
|     assert(a.length === 3);
 | |
|     assert(a[0] === 1);
 | |
|     assert(a[1] === 2);
 | |
|     assert(a[2] === 3);
 | |
| 
 | |
|     a[1] = 5;
 | |
|     assert(a[1] === 5);
 | |
|     assert(a.length === 3);
 | |
| 
 | |
|     a.push(7);
 | |
|     assert(a[3] === 7);
 | |
|     assert(a.length === 4);
 | |
| 
 | |
|     console.log("PASS");
 | |
| } catch (e) {
 | |
|     console.log("FAIL: " + e);
 | |
| }
 |