mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-08-08 06:00:05 +02:00
* update * validate * k * minor cleanup * nit * finalize * k * fix tests * fix tests * fix tests
15 lines
320 B
JavaScript
15 lines
320 B
JavaScript
export const TEST_USER_CREDENTIALS = {
|
|
email: "user1@test.com",
|
|
password: "User1Password123!",
|
|
};
|
|
|
|
export const TEST_ADMIN_CREDENTIALS = {
|
|
email: "admin_user@test.com",
|
|
password: "TestPassword123!",
|
|
};
|
|
|
|
export const TEST_ADMIN2_CREDENTIALS = {
|
|
email: "admin2_user@test.com",
|
|
password: "TestPassword123!",
|
|
};
|