mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-02 19:08:28 -05:00
* add firebase emulator, add registration script, add signup spec * Upgrade firebase emulator and make it pass the E2E tests --------- Co-authored-by: MartinBraquet <martin.braquet@gmail.com>
24 lines
495 B
JavaScript
24 lines
495 B
JavaScript
export const config = {
|
|
BASE_URL: 'http://localhost:3000',
|
|
|
|
USERS: {
|
|
DEV_1: {
|
|
EMAIL: 'dev_1@compass.com',
|
|
PASSWORD: 'dev_1Password',
|
|
},
|
|
DEV_2: {
|
|
EMAIL: 'dev_2@compass.com',
|
|
PASSWORD: 'dev_2Password',
|
|
},
|
|
SPEC: {
|
|
EMAIL: 'spec@compass.com',
|
|
PASSWORD: 'compassConnections1!',
|
|
},
|
|
SPEC_GOOGLE: {
|
|
EMAIL: 'compass.connections.test@gmail.com',
|
|
//unsure if gmail password should be public
|
|
PASSWORD: '',
|
|
}
|
|
},
|
|
};
|