mirror of
				https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
				synced 2025-11-04 07:35:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			255 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			255 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var test = require('tape');
 | 
						|
var inspect = require('../');
 | 
						|
 | 
						|
var xs = ['a', 'b'];
 | 
						|
xs[5] = 'f';
 | 
						|
xs[7] = 'j';
 | 
						|
xs[8] = 'k';
 | 
						|
 | 
						|
test('holes', function (t) {
 | 
						|
    t.plan(1);
 | 
						|
    t.equal(
 | 
						|
        inspect(xs),
 | 
						|
        "[ 'a', 'b', , , , 'f', , 'j', 'k' ]"
 | 
						|
    );
 | 
						|
});
 |