All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m39s
- Introduced a toggle button to enable or disable chores in the scheduler. - The toggle will be available in both types of schedulers. - Added UI design proposal and considerations for mobile dimensions. - Included E2E tests to ensure toggle state persistence and correct behavior in child view.
16 lines
731 B
TypeScript
16 lines
731 B
TypeScript
export const STORAGE_STATE = 'e2e/.auth/user.json'
|
|
export const STORAGE_STATE_NO_PIN = 'e2e/.auth/user-no-pin.json'
|
|
export const STORAGE_STATE_TEMP_PARENT = 'e2e/.auth/user-temp-parent.json'
|
|
export const STORAGE_STATE_DELETE = 'e2e/.auth/user-delete.json'
|
|
export const STORAGE_STATE_CC = 'e2e/.auth/user-cc.json'
|
|
export const E2E_EMAIL = 'e2e@test.com'
|
|
export const E2E_PASSWORD = 'E2eTestPass1!'
|
|
export const E2E_PIN = '1234'
|
|
export const E2E_FIRST_NAME = 'E2E'
|
|
export const E2E_DELETE_EMAIL = 'e2e-delete@test.com'
|
|
export const E2E_DELETE_PASSWORD = 'E2eDeletePass1!'
|
|
export const E2E_DELETE_PIN = '5678'
|
|
export const E2E_CC_EMAIL = 'e2e-cc@test.com'
|
|
export const E2E_CC_PASSWORD = 'E2eCCPass1!'
|
|
export const E2E_CC_PIN = '3456'
|