GUI -- Created Mock WebSocket Server (runs with node.js)
- moved test scenario events to directory in test branch.

Change-Id: I1f94a9b4c844be1ea2633de0c74d49ebf5a770a7
diff --git a/web/gui/src/main/webapp/app/fw/remote/websocket.js b/web/gui/src/main/webapp/app/fw/remote/websocket.js
index fb69cf9..de7b076 100644
--- a/web/gui/src/main/webapp/app/fw/remote/websocket.js
+++ b/web/gui/src/main/webapp/app/fw/remote/websocket.js
@@ -30,7 +30,8 @@
             // creates a web socket for the given path, returning a "handle".
             // cb is the callbacks block.
             function createWebSocket(path, cb) {
-                var fullUrl = ufs.wsUrl(path),
+                //var fullUrl = ufs.wsUrl(path),
+                var fullUrl = 'ws://localhost:8123/foo',
                     ws = new WebSocket(fullUrl),
                     api = {
                         meta: { path: fullUrl, ws: ws },