Adding globals

This commit is contained in:
Belen Curcio
2017-10-13 21:06:56 -03:00
parent 0dfff2ce53
commit 703fabf586
2 changed files with 15 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
const uuid = require('uuid');
const {murmur3} = require('murmurhash-js');
const rHash = murmur3(uuid.v4());
module.exports = {
waitForConditionTimeout: 5000,
testData: {
organizationName: 'Coral',
email: `test_${rHash}@test.test`,
username: `test${rHash}`,
password: `testpassword${rHash}`,
domain: 'http://localhost:3000'
}
};