[WEB GUI] Fixed tests: (345 test passing, 21 skipped).

Change-Id: Idf24ac6ab599664a052c7cc860a554db82953a79
diff --git a/web/gui/src/main/webapp/tests/app/view/topo/topoForce-spec.js b/web/gui/src/main/webapp/tests/app/view/topo/topoForce-spec.js
index 43c2394..101dda8 100644
--- a/web/gui/src/main/webapp/tests/app/view/topo/topoForce-spec.js
+++ b/web/gui/src/main/webapp/tests/app/view/topo/topoForce-spec.js
@@ -31,11 +31,11 @@
         bns = ButtonService;
     }));
 
-    xit('should define TopoForceService', function () {
+    it('should define TopoForceService', function () {
         expect(tfs).toBeDefined();
     });
 
-    xit('should define api functions', function () {
+    it('should define api functions', function () {
         expect(fs.areFunctions(tfs, [
             'initForce', 'newDim', 'destroyForce',
 
@@ -43,9 +43,9 @@
             'togglePorts', 'toggleOffline',
             'cycleDeviceLabels', 'unpin', 'showMastership', 'showBadLinks',
 
-            'addDevice', 'updateDevice', 'removeDevice',
-            'addHost', 'updateHost', 'removeHost',
-            'addLink', 'updateLink', 'removeLink'
+            'resetAllLocations', 'addDevice', 'updateDevice', 'removeDevice',
+            'addHost', 'updateHost', 'moveHost', 'removeHost',
+            'addLink', 'updateLink', 'removeLink', 'topoStartDone'
         ])).toBeTruthy();
     });