| 
				
			 | 
			
			
				@@ -107,10 +107,9 @@ ctx.describe('Progress report test', (report) => new Promise((resolve) => { 
			 | 
		
	
		
			
			| 
				107
			 | 
			
				107
			 | 
			
			
				   let log = [] 
			 | 
		
	
		
			
			| 
				108
			 | 
			
				108
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				109
			 | 
			
				109
			 | 
			
			
				   p1.onProgress = (written, total) => { 
			 | 
		
	
		
			
			| 
				110
			 | 
			
				
			 | 
			
			
				-    log.push(<Info key={`progress = ${written} bytes / ${total} bytes`}/>) 
			 | 
		
	
		
			
			| 
				
			 | 
			
				110
			 | 
			
			
				+    report(<Info key={`progress = ${written} bytes / ${total} bytes`}/>) 
			 | 
		
	
		
			
			| 
				111
			 | 
			
				111
			 | 
			
			
				     if(written === total) 
			 | 
		
	
		
			
			| 
				112
			 | 
			
				
			 | 
			
			
				-      log.push(<Assert key="progress goes to 100%" expect={written} actual={total}/>) 
			 | 
		
	
		
			
			| 
				113
			 | 
			
				
			 | 
			
			
				-    report(...log) 
			 | 
		
	
		
			
			| 
				
			 | 
			
				112
			 | 
			
			
				+      report(<Assert key="progress goes to 100%" expect={written} actual={total}/>) 
			 | 
		
	
		
			
			| 
				114
			 | 
			
				113
			 | 
			
			
				     resolve() 
			 | 
		
	
		
			
			| 
				115
			 | 
			
				114
			 | 
			
			
				   } 
			 | 
		
	
		
			
			| 
				116
			 | 
			
				115
			 | 
			
			
				  
			 |