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

Change-Id: Idf24ac6ab599664a052c7cc860a554db82953a79
diff --git a/web/gui/src/main/webapp/tests/app/fw/util/fn-spec.js b/web/gui/src/main/webapp/tests/app/fw/util/fn-spec.js
index efd9c91..7e7dae5 100644
--- a/web/gui/src/main/webapp/tests/app/fw/util/fn-spec.js
+++ b/web/gui/src/main/webapp/tests/app/fw/util/fn-spec.js
@@ -209,12 +209,14 @@
     });
 
     // == use the now-tested areFunctions() on our own api:
-    xit('should define api functions', function () {
+    it('should define api functions', function () {
         expect(fs.areFunctions(fs, [
             'isF', 'isA', 'isS', 'isO', 'contains',
-            'areFunctions', 'areFunctionsNonStrict', 'windowSize', 'isMobile',
-            'find', 'inArray', 'removeFromArray', 'isEmptyObject', 'cap',
-            'noPx', 'noPxStyle', 'endsWith', 'parseBitRate'
+            'areFunctions', 'areFunctionsNonStrict', 'windowSize', 
+            'isMobile', 'isChrome', 'isSafari', 'isFirefox',
+            'debugOn', 'debug',
+            'find', 'inArray', 'removeFromArray', 'isEmptyObject', 'sameObjProps', 'containsObj', 'cap',
+            'eecode', 'noPx', 'noPxStyle', 'endsWith', 'parseBitRate', 'addToTrie', 'removeFromTrie', 'trieLookup'
         ])).toBeTruthy();
     });
 
@@ -382,7 +384,7 @@
     it('should ignore non-alpha', function () {
         expect(fs.cap('123')).toEqual('123');
     });
-    xit('should capitalize first char', function () {
+    it('should capitalize first char', function () {
         expect(fs.cap('Foo')).toEqual('Foo');
         expect(fs.cap('foo')).toEqual('Foo');
         expect(fs.cap('foo bar')).toEqual('Foo bar');