Index: /CKTester/fort.js
===================================================================
--- /CKTester/fort.js	(revision 4288)
+++ /CKTester/fort.js	(revision 4289)
@@ -180,11 +180,17 @@
 		runCell : function()
 		{
-			var cell = ( this.currentCell = this.pendingCells.shift() ),
-				inNewWindow = cell && cell.tags.indexOf( 'manual' ) != -1;
+			var cell = ( this.currentCell = this.pendingCells.shift() );
 			if( cell )
+			{
+				var inNewWindow = cell.tags.indexOf( 'manual' ) != -1;
 				// Force new window + managed mode for cells with manual tag.
 				inNewWindow ?
 					this.runSingleCell( this.currentCell, 'managed' )
 					: this.testFrame.setAttribute( 'src', this.currentCell.path + '.html' );
+
+			}
+			// No more pending cells, close this test now. 
+			else
+				this.allComplete();
 		},
 
@@ -251,4 +257,9 @@
 
 			this.runCell();
+		},
+
+		// Leave for extension.
+		allComplete : function()
+		{
 		},
 
