initial commit

This commit is contained in:
Madison Grubb
2026-02-10 23:32:26 -05:00
commit b7046dc0e6
133 changed files with 26080 additions and 0 deletions

View 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',
}