mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 04:28:20 +08:00
19 lines
344 B
JavaScript
19 lines
344 B
JavaScript
module.exports = {
|
|
waitForConditionTimeout: 8000,
|
|
baseUrl: 'http://localhost:3011',
|
|
users: {
|
|
admin: {
|
|
email: 'admin@test.com',
|
|
pass: 'testtest'
|
|
},
|
|
moderator: {
|
|
email: 'moderator@test.com',
|
|
pass: 'testtest'
|
|
},
|
|
commenter: {
|
|
email: 'commenter@test.com',
|
|
pass: 'testtest'
|
|
}
|
|
},
|
|
};
|