All checks were successful
PR Checks / lint-test-and-docker-build (pull_request) Successful in 2m27s
16 lines
416 B
TypeScript
16 lines
416 B
TypeScript
// Shared test user definitions — no runtime deps, importable from both Node and Bun contexts.
|
|
export const TEST_USERS = {
|
|
regular: {
|
|
username: 'e2e_user',
|
|
fullName: 'E2E Regular User',
|
|
email: 'e2e_user@test.local',
|
|
password: 'e2e-regular-password123'
|
|
},
|
|
admin: {
|
|
username: 'e2e_admin',
|
|
fullName: 'E2E Admin User',
|
|
email: 'e2e_admin@test.local',
|
|
password: 'e2e-admin-password123'
|
|
}
|
|
} as const;
|