mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-04-29 19:10:51 -05:00
16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
/**
|
|
* Shared test constants
|
|
*/
|
|
|
|
/**
|
|
* Default password used for test users.
|
|
* The bcrypt hash for this password is used in the user factory.
|
|
*/
|
|
export const TEST_PASSWORD = '1234'
|
|
|
|
/**
|
|
* Bcrypt hash of TEST_PASSWORD ('1234') for database seeding
|
|
*/
|
|
export const TEST_PASSWORD_HASH = '$2a$14$dcadBoMBL9jQoOcZK8Fju.cy0Ptx2oZECkKLnaa8ekRoTFe1w7To.'
|
|
|