mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-23 18:36:02 -05:00
* . * Centralizing config details * Added data-testId attributes where necessary and started the onboarding flow scaffolding * Continued onboarding test scaffolding * Continued work on tests for the Onboarding flow * . * Updated "Want kids" options to be less flaky Updated playwright.config so that expect timeout matching test timeout * Continued updating front-end scaffolding * . * . * . * . * Updated fixture function deleteUser: to also remove the database user information * Rm * Fix * Fixes --------- Co-authored-by: MartinBraquet <martin.braquet@gmail.com>
33 lines
857 B
JavaScript
33 lines
857 B
JavaScript
export const config = {
|
|
BASE_URL: 'http://localhost:3000',
|
|
FIREBASE_URL: {
|
|
BASE: 'http://localhost:9099/identitytoolkit.googleapis.com/v1',
|
|
SIGNUP: '/accounts:signUp?key=fake-api-key',
|
|
SIGN_IN_PASSWORD: '/accounts:signInWithPassword?key=fake-api-key',
|
|
DELETE: '/accounts:delete?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: '',
|
|
}
|
|
},
|
|
};
|