equal
deleted
inserted
replaced
1 |
|
2 define ("WORKSPACE_URL", '<workspace-url>'); |
|
3 define ("USER_ADMIN", '<admin-login>'); |
|
4 define ("PASS_ADMIN", '<admin-password>'); |
|
5 |
|
6 define ("BROWSERS", ['Chrome']); |
|
7 |
|
8 // TODO: decide wether we should populate workspaces with standard users or |
|
9 // create them on the fly ? |
|
10 |
|
11 define ("USER_EDIT", ''); |
|
12 define ("PASS_EDIT", ''); |
|
13 |
|
14 define ("USER_COM", ''); |
|
15 define ("PASS_COM", ''); |
|
16 |
|
17 define ("USER_OBSERV", ''); |
|
18 define ("PASS_OBSERV", ''); |
|
19 |
|
20 function define (name, value) { |
|
21 Object.defineProperty (exports, name, { |
|
22 value: value, |
|
23 enumerable: true |
|
24 }); |
|
25 } |
|
26 |
|
27 |
|