mirror of
https://github.com/wassname/talk.git
synced 2026-07-19 11:28:50 +08:00
Adding globals
This commit is contained in:
@@ -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'
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user