initial commit
This commit is contained in:
21
test/e2e/fixtures/users.js
Normal file
21
test/e2e/fixtures/users.js
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* Test user fixtures for E2E tests.
|
||||
*/
|
||||
|
||||
export const TEST_ADMIN = {
|
||||
identifier: 'test-admin',
|
||||
password: 'test-admin-password',
|
||||
role: 'admin',
|
||||
}
|
||||
|
||||
export const TEST_LEADER = {
|
||||
identifier: 'test-leader',
|
||||
password: 'test-leader-password',
|
||||
role: 'leader',
|
||||
}
|
||||
|
||||
export const TEST_MEMBER = {
|
||||
identifier: 'test-member',
|
||||
password: 'test-member-password',
|
||||
role: 'member',
|
||||
}
|
||||
Reference in New Issue
Block a user