You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat(commands): run and open commands added for building config then running/opening cypress
* feat(commands): add support for loading path from `cypress.json`
* feat(core): add prettier
Copy file name to clipboardExpand all lines: README.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,12 +112,19 @@ Tests will run faster locally if you tests against the build version of your app
112
112
113
113
### Folders
114
114
115
-
`cypress` is the default folder where config is loaded from, but these other common folders are supported:
116
-
117
-
```
118
-
test/ui
119
-
test/e2e
120
-
```
115
+
`cypress` is the default folder where config is loaded from, but you can use another folder by specifiying a different setting for the `integrationFolder` parameter in `cypress.json`:
`${envPrefix}TEST_UID is missing from environment. Confirm that ${
44
-
constants.DEFAULT_TEST_FOLDER_PATH
45
-
}/config.json contains either ${envPrefix}TEST_UID or TEST_UID.`
46
-
));
44
+
/* eslint-disable */
45
+
consterrMsg=`${chalk.cyan(varName)} is missing from environment. Confirm that ${chalk.cyan(configPath)} contains either ${chalk.cyan(varName)} or ${chalk.cyan('TEST_UID')}.`;
logger.warn(`project_id "${chalk.cyan(serviceAccount.project_id)}" does not match env var: "${chalk.cyan(envVarBasedOnCIEnv('FIREBASE_PROJECT_ID'))}"`);
87
+
logger.warn(
88
+
`project_id in service account (${chalk.cyan(
89
+
serviceAccount.project_id
90
+
)}) does not match associated project in .firebaserc (${chalk.cyan(
91
+
FIREBASE_PROJECT_ID
92
+
)})`
93
+
);
75
94
/* eslint-enable no-console */
76
95
}
77
96
@@ -90,22 +109,25 @@ function createTestEnvFile() {
90
109
returnappFromSA
91
110
.auth()
92
111
.createCustomToken(uid,{isTesting: true})
93
-
.then((customToken)=>{
112
+
.then(customToken=>{
94
113
/* eslint-disable no-console */
95
114
logger.success(
96
-
`Custom token generated successfully, writing to ${chalk.cyan(constants.DEFAULT_TEST_ENV_FILE_NAME)}`
115
+
`Custom token generated successfully, writing to ${chalk.cyan(
0 commit comments