Files
Compass/tests/e2e/web/SPEC_CONFIG.ts
Okechi Jones-Williams 00e7662d60 Added a context manager to test with multiple accounts interacting with each other
Added an option to verify the users email when creating an account
2026-05-28 19:32:44 +01:00

37 lines
1.1 KiB
TypeScript

export const config = {
BASE_URL: 'http://localhost:3000',
FIREBASE_URL: {
BASE: 'http://localhost:9099/identitytoolkit.googleapis.com/v1',
FIREBASE_EMULATOR_API: 'http://localhost:9099/emulator/v1/projects/compass-57c3c/oobCodes',
SIGNUP: '/accounts:signUp?key=fake-api-key',
SIGN_IN_PASSWORD: '/accounts:signInWithPassword?key=fake-api-key',
ACCOUNT_LOOKUP: '/accounts:lookup?key=fake-api-key',
DELETE: '/accounts:delete?key=fake-api-key',
SEND_EMAIL_VERIFICATION: '/accounts:sendOobCode?key=fake-api-key',
CONFIRM_EMAIL_VERIFICATION: '/accounts:update?key=fake-api-key',
},
USERS: {
DEV_1: {
EMAIL: 'dev_1@compass.com',
PASSWORD: 'dev_1Password',
},
DEV_2: {
EMAIL: 'dev_2@compass.com',
PASSWORD: 'dev_2Password',
},
ONBOARDING: {
EMAIL: 'onboarding@compass.com',
PASSWORD: 'compassConnections1!',
},
SPEC: {
EMAIL: 'spec@compass.com',
PASSWORD: 'compassConnections1!',
},
SPEC_GOOGLE: {
EMAIL: 'compass.connections.test@gmail.com',
//unsure if gmail password should be public
PASSWORD: '',
},
},
}