diff -r 73d293d9cf76 -r 7b983f1b7040 test-suite/workspace.info.js.example --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-suite/workspace.info.js.example Mon Apr 07 17:41:35 2014 +0200 @@ -0,0 +1,21 @@ + +define ("DEBUG", false); // in DEBUG mode tests stop at first fail to let you check what happen +define ("BROWSERS", ['Chrome']); + +define ("WORKSPACE_URL", ''); // In http://IP_ADDRESS:PORT_NUM/ format +define ("USER_ADMIN", ''); +define ("PASS_ADMIN", ''); +define ("USER_EDIT", ''); +define ("PASS_EDIT", ''); +define ("USER_COM", ''); +define ("PASS_COM", ''); +define ("USER_OBSERV", ''); +define ("PASS_OBSERV", ''); + +function define (name, value) { + Object.defineProperty (exports, name, { + value: value, + enumerable: true + }); +} +